mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
use Logger instead of PypeLogger
This commit is contained in:
parent
7a1d161ab4
commit
882e00baef
26 changed files with 109 additions and 111 deletions
|
|
@ -15,7 +15,7 @@ from .exceptions import (
|
|||
EntitySchemaError
|
||||
)
|
||||
|
||||
from openpype.lib import PypeLogger
|
||||
from openpype.lib import Logger
|
||||
|
||||
|
||||
@six.add_metaclass(ABCMeta)
|
||||
|
|
@ -478,7 +478,7 @@ class BaseItemEntity(BaseEntity):
|
|||
def log(self):
|
||||
"""Auto created logger for debugging or warnings."""
|
||||
if self._log is None:
|
||||
self._log = PypeLogger.get_logger(self.__class__.__name__)
|
||||
self._log = Logger.get_logger(self.__class__.__name__)
|
||||
return self._log
|
||||
|
||||
@abstractproperty
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue