aboutsummaryrefslogtreecommitdiffstats
path: root/miner
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-04-15 18:12:20 +0800
committerobscuren <geffobscura@gmail.com>2015-04-15 18:12:20 +0800
commiteaf73b55bc02bba59bb471feaa465f8c5cf24d83 (patch)
tree34c1e61a1ed8f43355b4e326b5613e6ab7550b07 /miner
parent5d2138a2b23ff410767fa7d26d4ab5777db6fcde (diff)
downloadgo-tangerine-eaf73b55bc02bba59bb471feaa465f8c5cf24d83.tar
go-tangerine-eaf73b55bc02bba59bb471feaa465f8c5cf24d83.tar.gz
go-tangerine-eaf73b55bc02bba59bb471feaa465f8c5cf24d83.tar.bz2
go-tangerine-eaf73b55bc02bba59bb471feaa465f8c5cf24d83.tar.lz
go-tangerine-eaf73b55bc02bba59bb471feaa465f8c5cf24d83.tar.xz
go-tangerine-eaf73b55bc02bba59bb471feaa465f8c5cf24d83.tar.zst
go-tangerine-eaf73b55bc02bba59bb471feaa465f8c5cf24d83.zip
miner: moved bad uncle logging to ridiculous log level. Closes #720
Diffstat (limited to 'miner')
-rw-r--r--miner/worker.go7
1 files changed, 5 insertions, 2 deletions
diff --git a/miner/worker.go b/miner/worker.go
index 141294385..916481973 100644
--- a/miner/worker.go
+++ b/miner/worker.go
@@ -299,8 +299,11 @@ func (self *worker) commitNewWork() {
}
if err := self.commitUncle(uncle.Header()); err != nil {
- glog.V(logger.Debug).Infof("Bad uncle found and will be removed (%x)\n", hash[:4])
- glog.V(logger.Debug).Infoln(uncle)
+ if glog.V(logger.Ridiculousness) {
+ glog.V(logger.Detail).Infof("Bad uncle found and will be removed (%x)\n", hash[:4])
+ glog.V(logger.Detail).Infoln(uncle)
+ }
+
badUncles = append(badUncles, hash)
} else {
glog.V(logger.Debug).Infof("commiting %x as uncle\n", hash[:4])