From 466716863643457131e28192217f11b65a3dd956 Mon Sep 17 00:00:00 2001 From: Untone Date: Tue, 12 Mar 2024 17:48:34 +0300 Subject: [PATCH] logs-fox --- services/logger.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/logger.py b/services/logger.py index 69cdc6dc..f1832ba7 100644 --- a/services/logger.py +++ b/services/logger.py @@ -40,7 +40,7 @@ class MultilineColoredFormatter(colorlog.ColoredFormatter): formatted_lines = [super().format(record)] # Format the first line for line in lines[1:]: record.message = line # Set the message to the remaining lines one by one - formatted_lines.append(self._formatMessage(record)) # Format without prefix + formatted_lines.append(super().format(record)) # Format without prefix return '\n'.join(formatted_lines) else: return super().format(record)