diff options
author | Determinant <[email protected]> | 2019-08-15 00:40:08 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2019-08-15 00:40:08 -0400 |
commit | d271cc649e34963507411d4915512353ae1780e4 (patch) | |
tree | 91cf978b1c207719ad14e4766516add5ad360f62 /miner | |
parent | 03513e267d25b5086b3f905b6d1bc5635fcda845 (diff) |
enable colored log
Diffstat (limited to 'miner')
-rw-r--r-- | miner/worker.go | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/miner/worker.go b/miner/worker.go index c1a82ce..304c014 100644 --- a/miner/worker.go +++ b/miner/worker.go @@ -363,7 +363,7 @@ func (w *worker) newWorkLoop(recommit time.Duration) { clearPending(w.chain.CurrentBlock().NumberU64()) timestamp = time.Now().Unix() if !w.manualMining { - log.Warn("commit ch") + log.Trace("commit ch") commit(false, commitInterruptNewHead) } @@ -371,7 +371,7 @@ func (w *worker) newWorkLoop(recommit time.Duration) { clearPending(head.Block.NumberU64()) timestamp = time.Now().Unix() if !w.manualMining { - log.Warn("commit update") + log.Trace("commit update") commit(false, commitInterruptNewHead) } @@ -384,7 +384,7 @@ func (w *worker) newWorkLoop(recommit time.Duration) { timer.Reset(recommit) continue } - log.Warn("commit resubmit") + log.Trace("commit resubmit") commit(true, commitInterruptResubmit) } @@ -451,7 +451,6 @@ func (w *worker) mainLoop() { // If our mining block contains less than 2 uncle blocks, // add the new uncle block if valid and regenerate a mining block. if w.isRunning() && w.current != nil && w.current.uncles.Cardinality() < 2 && !w.manualUncle { - log.Warn("wtf") start := time.Now() if err := w.commitUncle(w.current, ev.Block.Header()); err == nil { var uncles []*types.Header @@ -949,7 +948,7 @@ func (w *worker) commitNewWork(interrupt *int32, noempty bool, timestamp int64) if !noempty && !w.manualUncle { // Create an empty block based on temporary copied state for sealing in advance without waiting block // execution finished. - log.Warn("commit n1") + log.Trace("commit n1") w.commit(uncles, nil, false, tstart) } @@ -984,7 +983,7 @@ func (w *worker) commitNewWork(interrupt *int32, noempty bool, timestamp int64) return } } - log.Warn("commit n2") + log.Trace("commit n2") w.commit(uncles, w.fullTaskHook, true, tstart) } |