Merge pull request #5838 from ellemouton/printPubKeyInHex

server: print pubkey in hex in log [skip ci]
This commit is contained in:
Olaoluwa Osuntokun 2021-10-07 12:28:48 -07:00 committed by GitHub
commit f290746095
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3699,7 +3699,8 @@ func (s *server) peerTerminationWatcher(p *peer.Brontide, ready chan struct{}) {
// outbound connection attempt is being made.
go func() {
srvrLog.Debugf("Scheduling connection re-establishment to "+
"persistent peer %v in %s", p.IdentityKey(), backoff)
"persistent peer %x in %s",
p.IdentityKey().SerializeCompressed(), backoff)
select {
case <-time.After(backoff):
@ -3710,7 +3711,8 @@ func (s *server) peerTerminationWatcher(p *peer.Brontide, ready chan struct{}) {
}
srvrLog.Debugf("Attempting to re-establish persistent "+
"connection to peer %v", p.IdentityKey())
"connection to peer %x",
p.IdentityKey().SerializeCompressed())
s.connectToPersistentPeer(pubStr)
}()