From 41a1e109546519dbd819ae99b4a4857142f8d59d Mon Sep 17 00:00:00 2001 From: MarcoFalke Date: Fri, 18 Dec 2020 10:02:53 +0100 Subject: [PATCH] Merge #20690: Clean up logging of outbound connection type 6d1e85f475a8af3ca0e094ed101dc19704e5ab74 Clean up logging of outbound connection type (Suhas Daftuar) Pull request description: We have a function that converts `ConnectionType` enums to strings, so use it. Suggested by ajtowns in https://github.com/bitcoin/bitcoin/pull/19858#discussion_r540791588 ACKs for top commit: amitiuttarwar: ACK 6d1e85f475a8af3ca0e094ed101dc19704e5ab74 naumenkogs: ACK 6d1e85f Tree-SHA512: f5084d8b5257380696d9fde86a8873e190cd4553feb07fa49df39bbd9510bf5832d190a3bca1571c48370d16a17c7a34900857b21b27bec0777bfa710211d7bb --- src/net_processing.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/net_processing.cpp b/src/net_processing.cpp index 23cd76cc7e..73adcc836d 100644 --- a/src/net_processing.cpp +++ b/src/net_processing.cpp @@ -3281,7 +3281,7 @@ void PeerManagerImpl::ProcessMessage( LogPrintf("New outbound peer connected: version: %d, blocks=%d, peer=%d%s (%s)\n", pfrom.nVersion.load(), peer->m_starting_height, pfrom.GetId(), (fLogIPs ? strprintf(", peeraddr=%s", pfrom.addr.ToString()) : ""), - pfrom.IsBlockOnlyConn()? "block-relay" : "full-relay"); + pfrom.ConnectionTypeAsString()); } if (!pfrom.m_masternode_probe_connection) {