mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 00:44:52 +01:00
OP-2766 - fixed not working self.log in New Publisher
This commit is contained in:
parent
3ce66cd098
commit
65b0045561
1 changed files with 3 additions and 1 deletions
|
|
@ -69,7 +69,9 @@ class BaseCreator:
|
|||
@property
|
||||
def log(self):
|
||||
if self._log is None:
|
||||
self._log = logging.getLogger(self.__class__.__name__)
|
||||
from openpype.api import Logger
|
||||
|
||||
self._log = Logger.get_logger(self.__class__.__name__)
|
||||
return self._log
|
||||
|
||||
def _add_instance_to_context(self, instance):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue