aboutsummaryrefslogtreecommitdiff
path: root/src/net.cpp
diff options
context:
space:
mode:
authorAnthony Towns <aj@erisian.com.au>2020-12-18 07:41:34 +1000
committerAnthony Towns <aj@erisian.com.au>2021-01-28 16:04:04 +1000
commit98fab37ca0517bfe58296e47266cd5bd112e90bf (patch)
tree1f96dfc9201173194d094a317540f4538d2d7976 /src/net.cpp
parent12302105bb0bf14721e91b7a3a9d1bf83c8d4154 (diff)
downloadbitcoin-98fab37ca0517bfe58296e47266cd5bd112e90bf.tar.xz
net: use peer=N instead of from=N in debug log
Diffstat (limited to 'src/net.cpp')
-rw-r--r--src/net.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net.cpp b/src/net.cpp
index 6f4ab2ee06..76bf7effa4 100644
--- a/src/net.cpp
+++ b/src/net.cpp
@@ -1231,7 +1231,7 @@ bool CConnman::InactivityCheck(const CNode& node) const
}
if (node.nLastRecv == 0 || node.nLastSend == 0) {
- LogPrint(BCLog::NET, "socket no message in first %i seconds, %d %d from %d\n", m_peer_connect_timeout, node.nLastRecv != 0, node.nLastSend != 0, node.GetId());
+ LogPrint(BCLog::NET, "socket no message in first %i seconds, %d %d peer=%d\n", m_peer_connect_timeout, node.nLastRecv != 0, node.nLastSend != 0, node.GetId());
return true;
}
@@ -1254,7 +1254,7 @@ bool CConnman::InactivityCheck(const CNode& node) const
}
if (!node.fSuccessfullyConnected) {
- LogPrint(BCLog::NET, "version handshake timeout from %d\n", node.GetId());
+ LogPrint(BCLog::NET, "version handshake timeout peer=%d\n", node.GetId());
return true;
}