mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 05:14:40 +01:00
use pype logger to get any output
This commit is contained in:
parent
ab943e7aaa
commit
f14475788d
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue