Replace panics with our logging framework

This commit is contained in:
Gabe Kangas
2021-10-25 00:14:42 -07:00
parent cd15661f08
commit 3f4176d8d6
7 changed files with 14 additions and 11 deletions

View File

@ -105,7 +105,7 @@ func (t *Transcoder) Start() {
stdout, err := _commandExec.StderrPipe()
if err != nil {
panic(err)
log.Fatalln(err)
}
if err := _commandExec.Start(); err != nil {