Skip to content

Commit b23e69c

Browse files
ziggie1984Roasbeef
authored andcommitted
discovery: fix log line.
if we use %x here we would get the hex representation of the String() method of the vertex, which is wrong.
1 parent 53799e9 commit b23e69c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

discovery/sync_manager.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,7 @@ func (m *SyncManager) removeGossipSyncer(peer route.Vertex) {
561561
return
562562
}
563563

564-
log.Debugf("Replaced active GossipSyncer(%x) with GossipSyncer(%x)",
564+
log.Debugf("Replaced active GossipSyncer(%v) with GossipSyncer(%x)",
565565
peer, newActiveSyncer.cfg.peerPub)
566566
}
567567

0 commit comments

Comments
 (0)