mirror of
https://github.com/bluenviron/mediamtx
synced 2025-03-11 06:47:58 +00:00
HLS converter: do not print an error message if there isn't any error
This commit is contained in:
parent
f7d3023921
commit
c06b9e450c
@ -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…
Reference in New Issue
Block a user