Skip to content

Commit

Permalink
Merge pull request #4811 from ipfs/fix/4439
Browse files Browse the repository at this point in the history
bitswap: reduce level when logging about disconnected peers to info
  • Loading branch information
whyrusleeping authored Mar 23, 2018
2 parents aaf6ee7 + b91dfbf commit 1be6513
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exchange/bitswap/wantmanager.go
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ func (pm *WantManager) Run() {
for _, t := range ws.targets {
p, ok := pm.peers[t]
if !ok {
log.Warning("tried sending wantlist change to non-partner peer")
log.Infof("tried sending wantlist change to non-partner peer: %s", t)
continue
}
p.addMessage(ws.entries, ws.from)
Expand Down

0 comments on commit 1be6513

Please sign in to comment.