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 ec481edd8..50de213b3 100644
--- a/ethlog/loggers.go
+++ b/ethlog/loggers.go
@@ -96,7 +96,7 @@ func AddLogSystem(logSystem LogSystem) {
mutex.Lock()
defer mutex.Unlock()
if logSystems == nil {
- logMessages = make(chan *logMessage)
+ logMessages = make(chan *logMessage, 10)
quit = make(chan bool, 1)
go start()
}