good morning!!!!

Skip to content
Snippets Groups Projects
Unverified Commit 09440dcc authored by ledgerwatch's avatar ledgerwatch Committed by GitHub
Browse files

Print memory stats (#934)

parent 6976f58f
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,9 @@ package stagedsync
import (
"fmt"
"runtime"
"github.com/ledgerwatch/turbo-geth/common"
"github.com/ledgerwatch/turbo-geth/eth/stagedsync/stages"
"github.com/ledgerwatch/turbo-geth/ethdb"
"github.com/ledgerwatch/turbo-geth/log"
......@@ -127,6 +129,9 @@ func (s *State) Run(db ethdb.GetterPutter) error {
return err
}
}
var m runtime.MemStats
runtime.ReadMemStats(&m)
log.Info("Memory", "alloc", common.StorageSize(m.Alloc), "sys", common.StorageSize(m.Sys))
return nil
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment