Skip to content

Commit

Permalink
Fix darwin mdns log
Browse files Browse the repository at this point in the history
  • Loading branch information
cecille committed Nov 15, 2021
1 parent 2832392 commit 6c0570a
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 6c0570a

Please sign in to comment.