cmd/geth, code, eth/downloader: tune import logs and mem stats

This commit is contained in:
Péter Szilágyi
2016-10-21 11:40:00 +03:00
parent f2ae2f7eef
commit 1291778032
4 changed files with 67 additions and 27 deletions

View File

@ -952,7 +952,7 @@ func (d *Downloader) fetchNodeData() error {
// Log a message to the user and return
if delivered > 0 {
glog.V(logger.Info).Infof("imported %d state entries in %9v: processed %d, pending at least %d", delivered, common.PrettyDuration(time.Since(start)), d.syncStatsStateDone, pending)
glog.V(logger.Info).Infof("imported %3d state entries in %9v: processed %d, pending at least %d", delivered, common.PrettyDuration(time.Since(start)), d.syncStatsStateDone, pending)
}
})
}