From 283f158e0e5177892fee574e0e2c816cc811d58e Mon Sep 17 00:00:00 2001 From: Michael Johnson Date: Fri, 31 May 2013 07:18:03 -0300 Subject: [PATCH] Make the log slightly more verbose to improve status messages in NZBGet --- autoProcess/Transcoder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoProcess/Transcoder.py b/autoProcess/Transcoder.py index 66cc3beb..07d838d6 100644 --- a/autoProcess/Transcoder.py +++ b/autoProcess/Transcoder.py @@ -105,7 +105,7 @@ def Transcode_directory(dirName): command.append('-sn') # Don't copy the subtitles over command.append(newfilePath) - Logger.debug("Transcoding video %s to %s", filePath, newfilePath) + Logger.info("Transcoding video: %s", file) result = 1 # set result to failed in case call fails. try: result = call(command)