From 8f60a8380c0e7e7d81d306a01ec06db8fa96becb Mon Sep 17 00:00:00 2001 From: Alexander Block Date: Thu, 12 Jul 2018 11:17:19 +0200 Subject: [PATCH] Remove a few annoying debug prints from CMasternodeMan (#2179) These are occurring every second and cause more noise than actual information. --- src/masternodeman.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/masternodeman.cpp b/src/masternodeman.cpp index f979805b78d24..cb797558c3c04 100644 --- a/src/masternodeman.cpp +++ b/src/masternodeman.cpp @@ -164,8 +164,6 @@ void CMasternodeMan::Check() { LOCK2(cs_main, cs); - LogPrint("masternode", "CMasternodeMan::Check -- nLastSentinelPingTime=%d, IsSentinelPingActive()=%d\n", nLastSentinelPingTime, IsSentinelPingActive()); - for (auto& mnpair : mapMasternodes) { // NOTE: internally it checks only every MASTERNODE_CHECK_SECONDS seconds // since the last time, so expect some MNs to skip this @@ -796,7 +794,6 @@ void CMasternodeMan::ProcessPendingMnbRequests(CConnman& connman) ++itPendingMNB; } } - LogPrint("masternode", "%s -- mapPendingMNB size: %d\n", __func__, mapPendingMNB.size()); } void CMasternodeMan::ProcessMessage(CNode* pfrom, const std::string& strCommand, CDataStream& vRecv, CConnman& connman) @@ -1171,7 +1168,6 @@ void CMasternodeMan::ProcessPendingMnvRequests(CConnman& connman) ++itPendingMNV; } } - LogPrint("masternode", "%s -- mapPendingMNV size: %d\n", __func__, mapPendingMNV.size()); } void CMasternodeMan::SendVerifyReply(CNode* pnode, CMasternodeVerification& mnv, CConnman& connman)