From bbd32faf050a94e90a95d123fe0db771fe873ccc Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Tue, 8 Jan 2013 14:50:45 -0800 Subject: [PATCH] Demote some older logs. --- src/cpp/ripple/LedgerConsensus.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cpp/ripple/LedgerConsensus.cpp b/src/cpp/ripple/LedgerConsensus.cpp index 3280b6e5b..fc5ee28cc 100644 --- a/src/cpp/ripple/LedgerConsensus.cpp +++ b/src/cpp/ripple/LedgerConsensus.cpp @@ -756,10 +756,10 @@ void LedgerConsensus::updateOurPositions() for (std::map::iterator it = closeTimes.begin(), end = closeTimes.end(); it != end; ++it) { - cLog(lsINFO) << "CCTime: " << it->first << " has " << it->second << ", " << thresh << " required"; + cLog(lsTRACE) << "CCTime: " << it->first << " has " << it->second << ", " << thresh << " required"; if (it->second >= thresh) { - cLog(lsINFO) << "Close time consensus reached: " << it->first; + cLog(lsDEBUG) << "Close time consensus reached: " << it->first; mHaveCloseTimeConsensus = true; closeTime = it->first; thresh = it->second;