mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 07:06:42 +00:00
core/rawdb: less logging during tx index pruning
This commit is contained in:
parent
bbedddb7d5
commit
8ba23d5fb7
1 changed files with 1 additions and 1 deletions
|
|
@ -397,7 +397,7 @@ func PruneTransactionIndex(db ethdb.Database, pruneBlock uint64) {
|
||||||
}
|
}
|
||||||
removed++
|
removed++
|
||||||
}
|
}
|
||||||
if count%10000 == 0 {
|
if count%1000000 == 0 {
|
||||||
log.Info("Pruning tx index", "count", count, "removed", removed)
|
log.Info("Pruning tx index", "count", count, "removed", removed)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue