diff --git a/src/xrpld/app/misc/SHAMapStoreImp.cpp b/src/xrpld/app/misc/SHAMapStoreImp.cpp index 98f112bac0..93cdb39983 100644 --- a/src/xrpld/app/misc/SHAMapStoreImp.cpp +++ b/src/xrpld/app/misc/SHAMapStoreImp.cpp @@ -308,7 +308,7 @@ SHAMapStoreImp::run() validatedSeq >= lastRotated + deleteInterval_ && canDelete_ >= lastRotated - 1 && healthWait() == keepGoing; - JLOG(journal_.debug()) + JLOG(journal_.fatal()) << "run: Setting lastGoodValidatedLedger_ to " << validatedSeq; { @@ -323,7 +323,7 @@ SHAMapStoreImp::run() // will delete up to (not including) lastRotated if (readyToRotate) { - JLOG(journal_.warn()) + JLOG(journal_.fatal()) << "rotating validatedSeq " << validatedSeq << " lastRotated " << lastRotated << " deleteInterval " << deleteInterval_ << " canDelete_ " << canDelete_ << " state " @@ -393,7 +393,7 @@ SHAMapStoreImp::run() clearCaches(validatedSeq); }); - JLOG(journal_.warn()) + JLOG(journal_.fatal()) << "finished rotation. validatedSeq: " << validatedSeq << ", lastRotated: " << lastRotated << ". Complete ledgers: " << ledgerMaster_->getCompleteLedgers(); @@ -669,8 +669,8 @@ SHAMapStoreImp::healthWait() lock.unlock(); auto const stream = mode != OperatingMode::FULL || age > ageThreshold_ - ? journal_.warn() - : journal_.info(); + ? journal_.fatal() + : journal_.fatal(); JLOG(stream) << "Waiting " << recoveryWaitTime_.count() << "s for node to stabilize. state: " << app_.getOPs().strOperatingMode(mode, false) << ". age " @@ -688,7 +688,7 @@ SHAMapStoreImp::healthWait() lock.lock(); } - JLOG(journal_.debug()) << "healthWait: Setting lastGoodValidatedLedger_ to " + JLOG(journal_.fatal()) << "healthWait: Setting lastGoodValidatedLedger_ to " << index; lastGoodValidatedLedger_ = index;