Skip to content

Commit 55a6c6b

Browse files
authored
Correct copy&paste errors in log (#36019)
1 parent fa570cc commit 55a6c6b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/fabric-admin/device_manager/UniqueIdGetter.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ void UniqueIdGetter::OnDeviceConnected(Messaging::ExchangeManager & exchangeMgr,
131131

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

145145
OnDone(nullptr);
146146
}

0 commit comments

Comments
 (0)