Skip to content

Commit

Permalink
Correct copy&paste errors in log (#36019)
Browse files Browse the repository at this point in the history
  • Loading branch information
yufengwangca authored Oct 11, 2024
1 parent fa570cc commit 55a6c6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/fabric-admin/device_manager/UniqueIdGetter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ void UniqueIdGetter::OnDeviceConnected(Messaging::ExchangeManager & exchangeMgr,

if (err != CHIP_NO_ERROR)
{
ChipLogError(NotSpecified, "Failed to issue subscription to AdministratorCommissioning data");
ChipLogError(NotSpecified, "Failed to read unique ID from the bridged device.");
OnDone(nullptr);
return;
}
Expand All @@ -140,7 +140,7 @@ void UniqueIdGetter::OnDeviceConnected(Messaging::ExchangeManager & exchangeMgr,
void UniqueIdGetter::OnDeviceConnectionFailure(const ScopedNodeId & peerId, CHIP_ERROR error)
{
VerifyOrDie(mCurrentlyGettingUid);
ChipLogError(NotSpecified, "DeviceSubscription failed to connect to " ChipLogFormatX64, ChipLogValueX64(peerId.GetNodeId()));
ChipLogError(NotSpecified, "UniqueIdGetter failed to connect to " ChipLogFormatX64, ChipLogValueX64(peerId.GetNodeId()));

OnDone(nullptr);
}

0 comments on commit 55a6c6b

Please sign in to comment.