mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-21 14:04:06 +01: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:
parent
0aced5ce2d
commit
aecfe1c484
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue