saner logging (#381)
This commit is contained in:
parent
98d0cc3a16
commit
03f5bbba6d
|
@ -492,7 +492,7 @@ method rpcHandler*(g: GossipSub,
|
|||
if respControl.graft.len > 0 or respControl.prune.len > 0 or
|
||||
respControl.ihave.len > 0 or messages.len > 0:
|
||||
|
||||
debug "sending control message", msg = shortLog(respControl), peer
|
||||
trace "sending control message", msg = shortLog(respControl), peer
|
||||
g.send(
|
||||
peer,
|
||||
RPCMsg(control: some(respControl), messages: messages))
|
||||
|
@ -627,4 +627,4 @@ method initPubSub*(g: GossipSub) =
|
|||
g.gossipsub = initTable[string, HashSet[PubSubPeer]]()# topic to peer map of all gossipsub peers
|
||||
g.lastFanoutPubSub = initTable[string, Moment]() # last publish time for fanout topics
|
||||
g.gossip = initTable[string, seq[ControlIHave]]() # pending gossip
|
||||
g.control = initTable[string, ControlMessage]() # pending control messages
|
||||
g.control = initTable[string, ControlMessage]() # pending control messages
|
||||
|
|
Loading…
Reference in New Issue