Skip to content

Commit

Permalink
Fix "No command" logging during group command dispatch.
Browse files Browse the repository at this point in the history
We were logging the endpoint id and claiming it's the command id.
  • Loading branch information
bzbarsky-apple committed Jun 15, 2022
1 parent 4b6fc80 commit 1b7d408
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/CommandHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ CHIP_ERROR CommandHandler::ProcessGroupCommandDataIB(CommandDataIB::Parser & aCo
if (mpCallback->CommandExists(concretePath) != Protocols::InteractionModel::Status::Success)
{
ChipLogDetail(DataManagement, "No command " ChipLogFormatMEI " in Cluster " ChipLogFormatMEI " on Endpoint 0x%x",
ChipLogValueMEI(mapping.endpoint_id), ChipLogValueMEI(clusterId), mapping.endpoint_id);
ChipLogValueMEI(commandId), ChipLogValueMEI(clusterId), mapping.endpoint_id);

continue;
}
Expand Down

0 comments on commit 1b7d408

Please sign in to comment.