core/rawdb: less logging during tx index pruning

This commit is contained in:
Felix Lange 2025-03-18 21:17:46 +01:00
parent bbedddb7d5
commit 8ba23d5fb7

View file

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