aboutsummaryrefslogtreecommitdiffstats
path: root/ethlog/loggers.go
diff options
context:
space:
mode:
Diffstat (limited to 'ethlog/loggers.go')
-rw-r--r--ethlog/loggers.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ethlog/loggers.go b/ethlog/loggers.go
index 219c78240..ec481edd8 100644
--- a/ethlog/loggers.go
+++ b/ethlog/loggers.go
@@ -97,7 +97,7 @@ func AddLogSystem(logSystem LogSystem) {
defer mutex.Unlock()
if logSystems == nil {
logMessages = make(chan *logMessage)
- quit = make(chan bool)
+ quit = make(chan bool, 1)
go start()
}
logSystems = append(logSystems, logSystem)