lower some gossipsub logging to debug level

This commit is contained in:
Giovanni Petrantoni 2021-02-08 10:11:41 +09:00
parent fd73cf9f9d
commit 646557597d
1 changed files with 2 additions and 2 deletions

View File

@ -97,7 +97,7 @@ proc handleGraft*(g: GossipSub,
# It is an error to GRAFT on a explicit peer # It is an error to GRAFT on a explicit peer
if peer.peerId in g.parameters.directPeers: if peer.peerId in g.parameters.directPeers:
# receiving a graft from a direct peer should yield a more prominent warning (protocol violation) # receiving a graft from a direct peer should yield a more prominent warning (protocol violation)
warn "attempt to graft an explicit peer", peer=peer.peerId, debug "attempt to graft an explicit peer", peer=peer.peerId,
topic topic
# and such an attempt should be logged and rejected with a PRUNE # and such an attempt should be logged and rejected with a PRUNE
result.add(ControlPrune( result.add(ControlPrune(
@ -117,7 +117,7 @@ proc handleGraft*(g: GossipSub,
if g.backingOff if g.backingOff
.getOrDefault(topic) .getOrDefault(topic)
.getOrDefault(peer.peerId) > Moment.now(): .getOrDefault(peer.peerId) > Moment.now():
warn "attempt to graft a backingOff peer", peer=peer.peerId, debug "attempt to graft a backingOff peer", peer=peer.peerId,
topic topic
# and such an attempt should be logged and rejected with a PRUNE # and such an attempt should be logged and rejected with a PRUNE
result.add(ControlPrune( result.add(ControlPrune(