logger: bugfix function name changed for highlight

This commit is contained in:
pedro 2024-11-27 01:12:58 +01:00 committed by sergio-gimenez
parent 61898bae31
commit d206eb18ac

View file

@ -38,5 +38,5 @@ class CustomFormatter(logging.Formatter):
return super().format(record) return super().format(record)
def highlight_args(self, message, args, color): def highlight_message(self, message, args, color):
return f"{color}{message}{RESET}" return f"{color}{message}{RESET}"