From e3c307c145dc472633b8fc4d240f31d13d4d4e5a Mon Sep 17 00:00:00 2001 From: Neil Macneale IV Date: Tue, 11 Nov 2025 18:25:24 -0800 Subject: [PATCH] Print the resume message after the snappy/crc scans --- go/store/nbs/journal_inspect.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/store/nbs/journal_inspect.go b/go/store/nbs/journal_inspect.go index 77110a32c4..a8489f1687 100644 --- a/go/store/nbs/journal_inspect.go +++ b/go/store/nbs/journal_inspect.go @@ -115,7 +115,6 @@ func JournalInspect(journalPath string, seeRoots, seeChunks, crcScan, snapScan b firstHealthy := false if err = validateJournalRecord(recordBuf); err == nil { if !healthyState { - logrus.Infof("Resumed healthy reads at offset %d", offset) healthyState = true firstHealthy = true if suspectRegionStart != -1 { @@ -130,6 +129,7 @@ func JournalInspect(journalPath string, seeRoots, seeChunks, crcScan, snapScan b } } suspectRegionStart = -1 + logrus.Infof("Resumed healthy reads at offset %d", offset) } rec, err := readJournalRecord(recordBuf)