From 7de647e1dc7156d05a4b65e3125c2d266310cb0f Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Tue, 25 Jun 2013 20:58:07 -0700 Subject: [PATCH] Reduce logging level. --- src/cpp/ripple/ripple_Validations.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cpp/ripple/ripple_Validations.cpp b/src/cpp/ripple/ripple_Validations.cpp index f29174136..29943266d 100644 --- a/src/cpp/ripple/ripple_Validations.cpp +++ b/src/cpp/ripple/ripple_Validations.cpp @@ -307,7 +307,7 @@ private: (valPriorLedger && (it->second->getLedgerHash () == priorLedger)))) { countPreferred = true; - WriteLog (lsDEBUG, Validations) << "Counting for " << currentLedger << " not " << it->second->getLedgerHash (); + WriteLog (lsTRACE, Validations) << "Counting for " << currentLedger << " not " << it->second->getLedgerHash (); } currentValidationCount& p = countPreferred ? ret[currentLedger] : ret[it->second->getLedgerHash ()];