diff --git a/src/ripple/app/ledger/Ledger.cpp b/src/ripple/app/ledger/Ledger.cpp index fd1610cc6..b18ee92a3 100644 --- a/src/ripple/app/ledger/Ledger.cpp +++ b/src/ripple/app/ledger/Ledger.cpp @@ -1460,7 +1460,7 @@ uint256 Ledger::getLedgerHash (std::uint32_t ledgerIndex) if ((ledgerIndex & 0xff) != 0) { - WriteLog (lsWARNING, Ledger) << "Can't get seq " << ledgerIndex + WriteLog (lsDEBUG, Ledger) << "Can't get seq " << ledgerIndex << " from " << mLedgerSeq << " past"; return uint256 (); } diff --git a/src/ripple/app/paths/PathState.cpp b/src/ripple/app/paths/PathState.cpp index d51461445..09d456c5d 100644 --- a/src/ripple/app/paths/PathState.cpp +++ b/src/ripple/app/paths/PathState.cpp @@ -335,7 +335,7 @@ TER PathState::pushNode ( node.issue_.currency); if (-saOwed >= saLimit) { - WriteLog (lsWARNING, RippleCalc) << + WriteLog (lsDEBUG, RippleCalc) << "pushNode: dry:" << " saOwed=" << saOwed << " saLimit=" << saLimit; diff --git a/src/ripple/app/paths/cursor/DeliverNodeForward.cpp b/src/ripple/app/paths/cursor/DeliverNodeForward.cpp index e5fe9e841..97ed5f74d 100644 --- a/src/ripple/app/paths/cursor/DeliverNodeForward.cpp +++ b/src/ripple/app/paths/cursor/DeliverNodeForward.cpp @@ -322,7 +322,7 @@ TER PathCursor::deliverNodeForward ( { // Offer became unfunded. - WriteLog (lsWARNING, RippleCalc) + WriteLog (lsDEBUG, RippleCalc) << "deliverNodeForward: unfunded:" << " saOutPassAct=" << saOutPassAct << " saOutFunded=" << saOutFunded; diff --git a/src/ripple/peerfinder/impl/Logic.h b/src/ripple/peerfinder/impl/Logic.h index e3e36a448..a07ff7e85 100644 --- a/src/ripple/peerfinder/impl/Logic.h +++ b/src/ripple/peerfinder/impl/Logic.h @@ -818,7 +818,7 @@ public: { if (slot->connectivityCheckInProgress) { - if (m_journal.warning) m_journal.warning << beast::leftw (18) << + if (m_journal.debug) m_journal.debug << beast::leftw (18) << "Logic testing " << ep.address << " already in progress"; continue; }