aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--logger/verbosity.go2
-rw-r--r--miner/worker.go7
2 files changed, 7 insertions, 2 deletions
diff --git a/logger/verbosity.go b/logger/verbosity.go
index 887b90f02..e052b80a3 100644
--- a/logger/verbosity.go
+++ b/logger/verbosity.go
@@ -7,4 +7,6 @@ const (
Core
Debug
Detail
+
+ Ridiculousness = 100
)
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])