Reduce some log severities.

This commit is contained in:
JoelKatz
2013-03-17 21:24:56 -07:00
parent 6bc474c461
commit 9edfd51430
2 changed files with 2 additions and 2 deletions

View File

@@ -863,7 +863,7 @@ void LedgerAcquireMaster::gotLedgerData(Job&, boost::shared_ptr<ripple::TMLedger
LedgerAcquire::pointer ledger = find(hash);
if (!ledger)
{
cLog(lsINFO) << "Got data for ledger we're not acquiring";
cLog(lsTRACE) << "Got data for ledger we're not acquiring";
peer->punishPeer(LT_InvalidRequest);
return;
}

View File

@@ -316,7 +316,7 @@ void LedgerMaster::resumeAcquiring()
else
{
mCompleteLedgers.clearValue(prevMissing);
cLog(lsWARNING) << "We have a gap at: " << prevMissing + 1;
cLog(lsINFO) << "We have a gap at: " << prevMissing + 1;
}
}
}