From 192dc2e85cc2a33cdb824e50f6e9747f54ed5ec2 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Sun, 28 Apr 2013 16:40:09 -0700 Subject: [PATCH] Reduce logging. --- src/cpp/ripple/LedgerEntrySet.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cpp/ripple/LedgerEntrySet.cpp b/src/cpp/ripple/LedgerEntrySet.cpp index c93b2f0df..71284c9b5 100644 --- a/src/cpp/ripple/LedgerEntrySet.cpp +++ b/src/cpp/ripple/LedgerEntrySet.cpp @@ -1169,7 +1169,7 @@ STAmount LedgerEntrySet::accountHolds(const uint160& uAccountID, const uint160& saAmount = saBalance-uReserve; } - cLog(lsDEBUG) << boost::str(boost::format("accountHolds: uAccountID=%s saAmount=%s saBalance=%s uReserve=%d") + cLog(lsTRACE) << boost::str(boost::format("accountHolds: uAccountID=%s saAmount=%s saBalance=%s uReserve=%d") % RippleAddress::createHumanAccountID(uAccountID) % saAmount.getFullText() % saBalance.getFullText() @@ -1179,7 +1179,7 @@ STAmount LedgerEntrySet::accountHolds(const uint160& uAccountID, const uint160& { saAmount = rippleHolds(uAccountID, uCurrencyID, uIssuerID); - cLog(lsDEBUG) << boost::str(boost::format("accountHolds: uAccountID=%s saAmount=%s") + cLog(lsTRACE) << boost::str(boost::format("accountHolds: uAccountID=%s saAmount=%s") % RippleAddress::createHumanAccountID(uAccountID) % saAmount.getFullText()); }