Unverified Commit 98f86117 authored by Steven Allen's avatar Steven Allen Committed by GitHub

fix: reduce log spam (#394)

This message will be received on reconnect and/or when we receive multiple
connections. It apparently shows up in logs quite frequently.
parent aa4f9dac
......@@ -481,7 +481,7 @@ func (p *PubSub) processLoop(ctx context.Context) {
select {
case pid := <-p.newPeers:
if _, ok := p.peers[pid]; ok {
log.Warn("already have connection to peer: ", pid)
log.Debug("already have connection to peer: ", pid)
continue
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment