fix linter
This commit is contained in:
parent
826fdeb2c2
commit
557c5e6539
1 changed files with 4 additions and 2 deletions
|
@ -24,8 +24,10 @@ LOOP:
|
|||
case <-outputsTomb.Dying():
|
||||
log.Infof("Flushing outputs")
|
||||
output.FlushAll()
|
||||
log.Infof("Shuting down output routines")
|
||||
output.Shutdown()
|
||||
log.Debugf("Shuting down output routines")
|
||||
if err := output.Shutdown(); err != nil {
|
||||
log.Errorf("error while in output shutdown: %s", err)
|
||||
}
|
||||
log.Infof("Done shutdown down output")
|
||||
break LOOP
|
||||
case event := <-overflow:
|
||||
|
|
Loading…
Add table
Reference in a new issue