Skip to content

Commit

Permalink
Merge pull request #443 from libp2p/fix/log-spam
Browse files Browse the repository at this point in the history
downgrade protocol mux failure log to debug
  • Loading branch information
Stebalien authored Oct 5, 2018
2 parents 394c637 + e7fc886 commit 27f502e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion p2p/host/basic/basic_host.go
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ func (h *BasicHost) newStreamHandler(s inet.Stream) {
}
logf("protocol EOF: %s (took %s)", s.Conn().RemotePeer(), took)
} else {
log.Infof("protocol mux failed: %s (took %s)", err, took)
log.Debugf("protocol mux failed: %s (took %s)", err, took)
}
s.Reset()
return
Expand Down

0 comments on commit 27f502e

Please sign in to comment.