core/rawdb: further reduce logging

This commit is contained in:
Felix Lange 2025-03-18 21:25:50 +01:00
parent 8ba23d5fb7
commit b14765822b

View file

@ -397,7 +397,7 @@ func PruneTransactionIndex(db ethdb.Database, pruneBlock uint64) {
} }
removed++ removed++
} }
if count%1000000 == 0 { if count%10000000 == 0 {
log.Info("Pruning tx index", "count", count, "removed", removed) log.Info("Pruning tx index", "count", count, "removed", removed)
} }
} }