TEMP: Change some logging to fatal to diagnose CI failures

This commit is contained in:
Ed Hennis
2025-07-21 14:32:08 -04:00
parent 6513c53817
commit 69cf18158b

View File

@@ -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;