From b14765822bbe6f162f7acc1e47b9a08e944cba20 Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Tue, 18 Mar 2025 21:25:50 +0100 Subject: [PATCH] core/rawdb: further reduce logging --- core/rawdb/chain_iterator.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/rawdb/chain_iterator.go b/core/rawdb/chain_iterator.go index 291c54dff7..89bd2c6421 100644 --- a/core/rawdb/chain_iterator.go +++ b/core/rawdb/chain_iterator.go @@ -397,7 +397,7 @@ func PruneTransactionIndex(db ethdb.Database, pruneBlock uint64) { } removed++ } - if count%1000000 == 0 { + if count%10000000 == 0 { log.Info("Pruning tx index", "count", count, "removed", removed) } }