Skip to content

Commit

Permalink
Fix darwin mdns log (#11797)
Browse files Browse the repository at this point in the history
  • Loading branch information
cecille authored and pull[bot] committed Nov 30, 2021
1 parent 013bc34 commit 2126532
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/platform/Darwin/DnssdImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ CHIP_ERROR ChipDnssdPublishService(const DnssdService * service)
char buffer[kDnssdTextMaxSize];
ReturnErrorOnFailure(PopulateTextRecord(&record, buffer, sizeof(buffer), service->mTextEntries, service->mTextEntrySize));

ChipLogProgress(chipTool, "Publising service %s on port %u with type: %s on interface id: %" PRIu32, service->mName,
ChipLogProgress(DeviceLayer, "Publishing service %s on port %u with type: %s on interface id: %" PRIu32, service->mName,
service->mPort, regtype.c_str(), interfaceId);
return Register(interfaceId, regtype.c_str(), service->mName, service->mPort, &record);
}
Expand Down

0 comments on commit 2126532

Please sign in to comment.