Skip to content

Commit 4d58a9b

Browse files
committed
Merge branch 'release/3.2.1'
2 parents 4144951 + 25b2f2f commit 4d58a9b

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

python_utils/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
'with the standard Python install')
77
__url__: str = 'https://github.com/WoLpH/python-utils'
88
# Omit type info due to automatic versioning script
9-
__version__ = '3.2.0'
9+
__version__ = '3.2.1'

python_utils/logger.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,10 @@ class Logged(LoggerBase):
8686

8787
logger: logging.Logger
8888

89+
@classmethod
90+
def __get_name(cls, *name_parts: str) -> str:
91+
return cls._LoggerBase__get_name(*name_parts)
92+
8993
def __new__(cls, *args, **kwargs):
9094
cls.logger = logging.getLogger(
9195
cls._LoggerBase__get_name(cls.__module__, cls.__name__)

0 commit comments

Comments
 (0)