From f14475788d84bdbd09c7757d29b448870de41cf6 Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Wed, 18 Nov 2020 18:34:07 +0100 Subject: [PATCH] use pype logger to get any output --- pype/lib/applications.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pype/lib/applications.py b/pype/lib/applications.py index 5444d6ca38..5c89e12a9a 100644 --- a/pype/lib/applications.py +++ b/pype/lib/applications.py @@ -511,7 +511,7 @@ def _subprocess(*args, **kwargs): class ApplicationManager: def __init__(self): - self.log = logging.getLogger(self.__class__.__name__) + self.log = Logger().get_logger(self.__class__.__name__) self.applications = {} @@ -687,7 +687,7 @@ class ApplicationLaunchContext: # Logger logger_name = "{}-{}".format(self.__class__.__name__, self.app_name) - self.log = logging.getLogger(logger_name) + self.log = Logger().get_logger(logger_name) self.executable = executable