diff options
Diffstat (limited to 'ethlog/loggers.go')
-rw-r--r-- | ethlog/loggers.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ethlog/loggers.go b/ethlog/loggers.go index 59021d169..b2760534b 100644 --- a/ethlog/loggers.go +++ b/ethlog/loggers.go @@ -119,7 +119,7 @@ func AddLogSystem(logSystem LogSystem) { mutex.Lock() defer mutex.Unlock() if logSystems == nil { - logMessages = make(chan *logMessage, 5) + logMessages = make(chan *logMessage, 10) quit = make(chan chan error, 1) drained = make(chan bool, 1) go start() |