From bc30aeaa04a32a65d698125e31b21aadf5c8f1db Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Tue, 14 May 2013 11:01:52 -0700 Subject: [PATCH] Reduce logging. --- src/cpp/ripple/LedgerAcquire.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/cpp/ripple/LedgerAcquire.cpp b/src/cpp/ripple/LedgerAcquire.cpp index 087db9fba..291ff8f8f 100644 --- a/src/cpp/ripple/LedgerAcquire.cpp +++ b/src/cpp/ripple/LedgerAcquire.cpp @@ -160,11 +160,11 @@ bool LedgerAcquire::tryLocal() { TransactionStateSF filter(mLedger->getLedgerSeq()); mLedger->peekTransactionMap()->fetchRoot(mLedger->getTransHash(), &filter); - cLog(lsDEBUG) << "Got root txn map locally"; + cLog(lsTRACE) << "Got root txn map locally"; std::vector h = mLedger->getNeededTransactionHashes(1, &filter); if (h.empty()) { - cLog(lsDEBUG) << "Had full txn map locally"; + cLog(lsTRACE) << "Had full txn map locally"; mHaveTransactions = true; } } @@ -187,11 +187,11 @@ bool LedgerAcquire::tryLocal() { AccountStateSF filter(mLedger->getLedgerSeq()); mLedger->peekAccountStateMap()->fetchRoot(mLedger->getAccountHash(), &filter); - cLog(lsDEBUG) << "Got root AS map locally"; + cLog(lsTRACE) << "Got root AS map locally"; std::vector h = mLedger->getNeededAccountStateHashes(1, &filter); if (h.empty()) { - cLog(lsDEBUG) << "Had full AS map locally"; + cLog(lsTRACE) << "Had full AS map locally"; mHaveState = true; } }