From 42088e52af1e19357c4da49fdc496a5969e533c2 Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Mon, 17 Feb 2025 15:46:25 +0100 Subject: [PATCH] core/state/snapshot: soften log message when snapshot generation is paused --- core/state/snapshot/generate.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/state/snapshot/generate.go b/core/state/snapshot/generate.go index 01fb55ea4c..7aa9a4f8b7 100644 --- a/core/state/snapshot/generate.go +++ b/core/state/snapshot/generate.go @@ -491,7 +491,7 @@ func (dl *diskLayer) checkAndFlush(ctx *generatorContext, current []byte) error dl.lock.Unlock() if abort != nil { - ctx.stats.Log("Aborting state snapshot generation", dl.root, current) + ctx.stats.Log("Pausing state snapshot generation", dl.root, current) return newAbortErr(abort) // bubble up an error for interruption } // Don't hold the iterators too long, release them to let compactor works