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():
|
case <-outputsTomb.Dying():
|
||||||
log.Infof("Flushing outputs")
|
log.Infof("Flushing outputs")
|
||||||
output.FlushAll()
|
output.FlushAll()
|
||||||
log.Infof("Shuting down output routines")
|
log.Debugf("Shuting down output routines")
|
||||||
output.Shutdown()
|
if err := output.Shutdown(); err != nil {
|
||||||
|
log.Errorf("error while in output shutdown: %s", err)
|
||||||
|
}
|
||||||
log.Infof("Done shutdown down output")
|
log.Infof("Done shutdown down output")
|
||||||
break LOOP
|
break LOOP
|
||||||
case event := <-overflow:
|
case event := <-overflow:
|
||||||
|
|
Loading…
Add table
Reference in a new issue