Skip to content

Commit

Permalink
Remove a few annoying debug prints from CMasternodeMan (dashpay#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 CryptoCentric committed Apr 25, 2019
1 parent 2742ef1 commit 8f60a83
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 @@ -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
Expand Down Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit 8f60a83

Please sign in to comment.