Browse Source

HLS converter: do not print an error message if there isn't any error

pull/441/head
aler9 5 years ago
parent
commit
c06b9e450c
  1. 4
      internal/hlsconverter/converter.go

4
internal/hlsconverter/converter.go

@ -226,7 +226,9 @@ func (c *Converter) run() { @@ -226,7 +226,9 @@ func (c *Converter) run() {
select {
case err := <-runErr:
innerCtxCancel()
c.log(logger.Info, "ERR: %s", err)
if err != nil {
c.log(logger.Info, "ERR: %s", err)
}
case <-c.ctx.Done():
innerCtxCancel()

Loading…
Cancel
Save