mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-03 09:37:38 +00:00
etl: only print file sizes for actual files, not RAM (#877)
This commit is contained in:
parent
25ec16f223
commit
1495979983
@ -129,7 +129,9 @@ func disposeProviders(providers []dataProvider) {
|
||||
}
|
||||
totalSize += providerSize
|
||||
}
|
||||
log.Info("etl: temp files removed successfully", "total size", datasize.ByteSize(totalSize).HumanReadable())
|
||||
if totalSize > 0 {
|
||||
log.Info("etl: temp files removed successfully", "total size", datasize.ByteSize(totalSize).HumanReadable())
|
||||
}
|
||||
}
|
||||
|
||||
type bucketState struct {
|
||||
|
Loading…
Reference in New Issue
Block a user