Merge pull request #1480 from cfromknecht/fix-server-log-msgs

server: log pubkey hex in connection callbacks
This commit is contained in:
Olaoluwa Osuntokun 2018-07-03 22:00:25 -05:00 committed by GitHub
commit 1778a3c38e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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