Skip to content

Commit

Permalink
Merge pull request #889 from libp2p/fix/noisy-log-line
Browse files Browse the repository at this point in the history
fix: reduce log level of a noisy log line
  • Loading branch information
Stebalien committed Apr 17, 2020
2 parents 76b080c + e13a3fe commit 5fa6149
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion p2p/discovery/mdns.go
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ func (m *mdnsService) pollForEntries(ctx context.Context) {

err := mdns.Query(qp)
if err != nil {
log.Error("mdns lookup error: ", err)
log.Warnw("mdns lookup error", "error", err)
}
close(entriesCh)
log.Debug("mdns query complete")
Expand Down

0 comments on commit 5fa6149

Please sign in to comment.