From 573450dee94f26ff5fc186c569836f5c56933ce8 Mon Sep 17 00:00:00 2001 From: Janis Hutz Date: Fri, 9 Jun 2023 14:59:02 +0200 Subject: [PATCH] add debug code --- bin/engines/ffc/ffc.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/engines/ffc/ffc.py b/bin/engines/ffc/ffc.py index efbd4df..7f7e2c3 100644 --- a/bin/engines/ffc/ffc.py +++ b/bin/engines/ffc/ffc.py @@ -239,6 +239,7 @@ def upscalerEngine ( files, scalefactor, number, maxlength, os_type, version ): else: print( 'OS CURRENTLY UNSUPPORTED!' ) return False + print( command_us ); sub = subprocess.Popen( command_us, shell=True ); sub.wait(); time.sleep(3) @@ -313,6 +314,7 @@ def sharpeningEngine ( files, number, maxlength, os_type, sharpening, didUpscale else: print( 'OS CURRENTLY UNSUPPORTED!' ) return False + print( command_sharpening ); sub2 = subprocess.Popen( command_sharpening, shell=True ); sub2.wait() time.sleep(3)