Log `ffmpeg` detection as Info

This commit is contained in:
Deluan 2020-10-12 21:59:03 -04:00
parent 2de0a40c6f
commit 1ffc8d619e
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ func createJWTSecret(ds model.DataStore) error {
func checkFfmpegInstallation() {
path, err := exec.LookPath("ffmpeg")
if err == nil {
log.Debug("Found ffmpeg", "path", path)
log.Info("Found ffmpeg", "path", path)
return
}
log.Warn("Unable to find ffmpeg. Transcoding will fail if used", err)