mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-23 14:40:30 +01:00
server: log pubkey hex in connection callbacks
This commit is contained in:
parent
9205720bea
commit
5be6993a56
1 changed files with 4 additions and 3 deletions
|
@ -1948,8 +1948,9 @@ func (s *server) InboundPeerConnected(conn net.Conn) {
|
|||
// If we already have an outbound connection to this peer, then ignore
|
||||
// this new connection.
|
||||
if _, ok := s.outboundPeers[pubStr]; ok {
|
||||
srvrLog.Debugf("Already have outbound connection for %v, "+
|
||||
"ignoring inbound connection", nodePub.SerializeCompressed())
|
||||
srvrLog.Debugf("Already have outbound connection for %x, "+
|
||||
"ignoring inbound connection",
|
||||
nodePub.SerializeCompressed())
|
||||
|
||||
conn.Close()
|
||||
return
|
||||
|
@ -2030,7 +2031,7 @@ func (s *server) OutboundPeerConnected(connReq *connmgr.ConnReq, conn net.Conn)
|
|||
// If we already have an inbound connection to this peer, then ignore
|
||||
// this new connection.
|
||||
if _, ok := s.inboundPeers[pubStr]; ok {
|
||||
srvrLog.Debugf("Already have inbound connection for %v, "+
|
||||
srvrLog.Debugf("Already have inbound connection for %x, "+
|
||||
"ignoring outbound connection",
|
||||
nodePub.SerializeCompressed())
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue