logging fixes

This commit is contained in:
Jacek Sieka 2020-07-13 17:26:05 +02:00
parent 87e58c1c8d
commit 061c54d3c6
No known key found for this signature in database
GPG Key ID: A1B09461ABB656B8
1 changed files with 2 additions and 2 deletions

View File

@ -331,7 +331,7 @@ proc handleGraft(g: GossipSub,
grafts: seq[ControlGraft]): seq[ControlPrune] = grafts: seq[ControlGraft]): seq[ControlPrune] =
for graft in grafts: for graft in grafts:
let topic = graft.topicID let topic = graft.topicID
trace "processing graft message", topic, peer trace "processing graft message", topic, peer = peer.id
# If they send us a graft before they send us a subscribe, what should # If they send us a graft before they send us a subscribe, what should
# we do? For now, we add them to mesh but don't add them to gossipsub. # we do? For now, we add them to mesh but don't add them to gossipsub.
@ -344,7 +344,7 @@ proc handleGraft(g: GossipSub,
if g.mesh.addPeer(topic, peer): if g.mesh.addPeer(topic, peer):
g.fanout.removePeer(topic, peer) g.fanout.removePeer(topic, peer)
else: else:
trace "Peer already in mesh", topic, peer trace "Peer already in mesh", topic, peer = peer.id
else: else:
result.add(ControlPrune(topicID: topic)) result.add(ControlPrune(topicID: topic))
else: else: