Skip to content

Commit

Permalink
Merge pull request #2961 from burdiyan/patch-1
Browse files Browse the repository at this point in the history
connmgr: reduce log level for untagging untracked peers
  • Loading branch information
vyzo authored Sep 13, 2024
2 parents cd88f97 + caf647f commit c771180
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion p2p/net/connmgr/connmgr.go
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ func (cm *BasicConnMgr) UntagPeer(p peer.ID, tag string) {

pi, ok := s.peers[p]
if !ok {
log.Info("tried to remove tag from untracked peer: ", p)
log.Debug("tried to remove tag from untracked peer: ", p, tag)
return
}

Expand Down

0 comments on commit c771180

Please sign in to comment.