From 6c5253c7e0bcbbccef760226280a14e62df2256a Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Mon, 26 Oct 2020 18:58:54 -0700 Subject: [PATCH] Do not panic. Closes #295 --- config/defaults.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/defaults.go b/config/defaults.go index 92093ef71..81e408440 100644 --- a/config/defaults.go +++ b/config/defaults.go @@ -40,7 +40,7 @@ func getDefaultFFMpegPath() string { cmd := exec.Command("which", "ffmpeg") out, err := cmd.CombinedOutput() if err != nil { - log.Panicln("Unable to determine path to ffmpeg. Please specify it in the config file.") + log.Debugln("Unable to determine path to ffmpeg. Please specify it in the config file.") } path := strings.TrimSpace(string(out))