Skip to content

Commit

Permalink
[log] Deescalate bad interface log from error to detail.
Browse files Browse the repository at this point in the history
  • Loading branch information
turon committed Feb 16, 2022
1 parent d35d448 commit 9de1aa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/dnssd/minimal_mdns/Server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ CHIP_ERROR ServerBase::BroadcastImpl(chip::System::PacketBufferHandle && data, u
{
char ifaceName[20];
info->mInterfaceId.GetInterfaceName(ifaceName, sizeof(ifaceName));
ChipLogError(Discovery, "Attempt to mDNS broadcast failed on %s: %s", ifaceName, chip::ErrorStr(err));
ChipLogDetail(Discovery, "Warning: Attempt to mDNS broadcast failed on %s: %s", ifaceName, chip::ErrorStr(err));
lastError = err;
}
return chip::Loop::Continue;
Expand Down

0 comments on commit 9de1aa4

Please sign in to comment.