From d0e00f370627c62af57e508a43db3e43a1797125 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Wed, 6 Mar 2013 16:39:47 -0800 Subject: [PATCH] Reduce chatty debug. --- 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 09ecc4ab7..b30c3bd7d 100644 --- a/src/cpp/ripple/LedgerEntrySet.cpp +++ b/src/cpp/ripple/LedgerEntrySet.cpp @@ -1121,7 +1121,7 @@ STAmount LedgerEntrySet::accountFunds(const uint160& uAccountID, const STAmount& { saFunds = saDefault; - cLog(lsINFO) << boost::str(boost::format("accountFunds: uAccountID=%s saDefault=%s SELF-FUNDED") + cLog(lsTRACE) << boost::str(boost::format("accountFunds: uAccountID=%s saDefault=%s SELF-FUNDED") % RippleAddress::createHumanAccountID(uAccountID) % saDefault.getFullText()); } @@ -1129,7 +1129,7 @@ STAmount LedgerEntrySet::accountFunds(const uint160& uAccountID, const STAmount& { saFunds = accountHolds(uAccountID, saDefault.getCurrency(), saDefault.getIssuer()); - cLog(lsINFO) << boost::str(boost::format("accountFunds: uAccountID=%s saDefault=%s saFunds=%s") + cLog(lsTRACE) << boost::str(boost::format("accountFunds: uAccountID=%s saDefault=%s saFunds=%s") % RippleAddress::createHumanAccountID(uAccountID) % saDefault.getFullText() % saFunds.getFullText());