This commit is contained in:
obscuren 2014-07-07 16:05:59 +02:00
parent 14d13167a7
commit e4e704f480
1 changed files with 1 additions and 1 deletions

View File

@ -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)