server: log pubkey hex in connection callbacks

This commit is contained in:
Conner Fromknecht 2018-06-29 17:22:03 -07:00
parent 9205720bea
commit 5be6993a56
No known key found for this signature in database
GPG Key ID: 39DE78FBE6ACB0EF

View File

@ -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())