Skip to content

Commit

Permalink
Remove a few annoying debug prints from CMasternodeMan (#2179)
Browse files Browse the repository at this point in the history
These are occurring every second and cause more noise than actual
information.
  • Loading branch information
codablock authored and UdjinM6 committed Jul 12, 2018
1 parent 5036d7d commit 23dde9f
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/masternodeman.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,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
Expand Down Expand Up @@ -795,7 +793,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)
Expand Down Expand Up @@ -1170,7 +1167,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)
Expand Down

0 comments on commit 23dde9f

Please sign in to comment.