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.
This commit is contained in:
ziggie 2024-08-08 13:14:39 +02:00
parent 0aced5ce2d
commit aecfe1c484
No known key found for this signature in database
GPG Key ID: 1AFF9C4DCED6D666

View File

@ -561,7 +561,7 @@ func (m *SyncManager) removeGossipSyncer(peer route.Vertex) {
return
}
log.Debugf("Replaced active GossipSyncer(%x) with GossipSyncer(%x)",
log.Debugf("Replaced active GossipSyncer(%v) with GossipSyncer(%x)",
peer, newActiveSyncer.cfg.peerPub)
}