Browse Source

Merge pull request #306 from libp2p/misc/log-downgrade

misc: downgrade a warning to info
pull/326/head
Jakub Sztandera 7 years ago
committed by GitHub
parent
commit
69cb86bb8f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      p2p/host/basic/basic_host.go

2
p2p/host/basic/basic_host.go

@ -250,7 +250,7 @@ func (h *BasicHost) newStreamHandler(s inet.Stream) {
}
logf("protocol EOF: %s (took %s)", s.Conn().RemotePeer(), took)
} else {
log.Warningf("protocol mux failed: %s (took %s)", err, took)
log.Infof("protocol mux failed: %s (took %s)", err, took)
}
s.Reset()
return

Loading…
Cancel
Save