From 4ed64d9c8a1dbca0064cca0a70ff982d0815e5df Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Tue, 28 Apr 2020 18:51:36 +0200 Subject: [PATCH] fixed logs in burnin script --- pype/scripts/otio_burnin.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pype/scripts/otio_burnin.py b/pype/scripts/otio_burnin.py index 1a9f3e3605..47e1811283 100644 --- a/pype/scripts/otio_burnin.py +++ b/pype/scripts/otio_burnin.py @@ -300,7 +300,7 @@ class ModifiedBurnins(ffmpeg_burnins.Burnins): args=args, overwrite=overwrite ) - # print(command) + # log.info(command) proc = subprocess.Popen(command, shell=True) proc.communicate() @@ -516,7 +516,6 @@ def burnins_from_data( else: codec_name = burnin._streams[0].get("codec_name") - log.info("codec_name: {}".format(codec_name)) if codec_name: ffmpeg_args.append("-codec:v {}".format(codec_name))