mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-09-18 19:41:21 +02:00
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:
committed by
Olaoluwa Osuntokun
parent
53799e9f91
commit
b23e69c0b7
@@ -561,7 +561,7 @@ func (m *SyncManager) removeGossipSyncer(peer route.Vertex) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
log.Debugf("Replaced active GossipSyncer(%x) with GossipSyncer(%x)",
|
log.Debugf("Replaced active GossipSyncer(%v) with GossipSyncer(%x)",
|
||||||
peer, newActiveSyncer.cfg.peerPub)
|
peer, newActiveSyncer.cfg.peerPub)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user