From 0c0e2acb9b7493e288fc7e6c6a81ea0c34f48da9 Mon Sep 17 00:00:00 2001 From: binary-husky Date: Tue, 1 Oct 2024 11:57:47 +0000 Subject: [PATCH] remove logging extra --- shared_utils/logging.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared_utils/logging.py b/shared_utils/logging.py index d8a4bd69..0a5b1852 100644 --- a/shared_utils/logging.py +++ b/shared_utils/logging.py @@ -11,7 +11,7 @@ def not_chat_log_filter(record): def formatter_with_clip(record): # Note this function returns the string to be formatted, not the actual message to be logged - record["extra"]["serialized"] = "555555" + # record["extra"]["serialized"] = "555555" max_len = 12 record['function_x'] = record['function'].center(max_len) if len(record['function_x']) > max_len: