We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4144951 + 25b2f2f commit 4d58a9bCopy full SHA for 4d58a9b
2 files changed
python_utils/__about__.py
@@ -6,4 +6,4 @@
6
'with the standard Python install')
7
__url__: str = 'https://github.com/WoLpH/python-utils'
8
# Omit type info due to automatic versioning script
9
-__version__ = '3.2.0'
+__version__ = '3.2.1'
python_utils/logger.py
@@ -86,6 +86,10 @@ class Logged(LoggerBase):
86
87
logger: logging.Logger
88
89
+ @classmethod
90
+ def __get_name(cls, *name_parts: str) -> str:
91
+ return cls._LoggerBase__get_name(*name_parts)
92
+
93
def __new__(cls, *args, **kwargs):
94
cls.logger = logging.getLogger(
95
cls._LoggerBase__get_name(cls.__module__, cls.__name__)
0 commit comments