From 56d3c49252bb55d25a2a80ea65f091eddba08e4a Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Tue, 5 Mar 2013 07:12:16 -0800 Subject: [PATCH] Logging changes. --- src/cpp/ripple/Pathfinder.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cpp/ripple/Pathfinder.cpp b/src/cpp/ripple/Pathfinder.cpp index fbcd7ce3e2..ef14477a57 100644 --- a/src/cpp/ripple/Pathfinder.cpp +++ b/src/cpp/ripple/Pathfinder.cpp @@ -310,7 +310,7 @@ bool Pathfinder::findPaths(const unsigned int iMaxSteps, const unsigned int iMax // Cursor on the dest account with correct currency and issuer. if (bDefaultPath(spPath)) { - cLog(lsDEBUG) << "findPaths: dropping: default path: " << spPath.getJson(0); + cLog(lsTRACE) << "findPaths: dropping: default path: " << spPath.getJson(0); bFound = true; } @@ -415,7 +415,7 @@ bool Pathfinder::findPaths(const unsigned int iMaxSteps, const unsigned int iMax if (spPath.hasSeen(uPeerID, speEnd.mCurrencyID, uPeerID)) { // Peer is in path already. Ignore it to avoid a loop. - cLog(lsDEBUG) << + cLog(lsTRACE) << boost::str(boost::format("findPaths: SEEN: %s/%s -> %s/%s") % RippleAddress::createHumanAccountID(speEnd.mAccountID) % STAmount::createHumanCurrency(speEnd.mCurrencyID) @@ -491,7 +491,7 @@ bool Pathfinder::findPaths(const unsigned int iMaxSteps, const unsigned int iMax } } - tLog(!bContinued, lsDEBUG) + tLog(!bContinued, lsTRACE) << boost::str(boost::format("findPaths: dropping: non-XRP -> dead end")); } }