From 92b965e338a1a9a8b098f9074a3077fc3e08193c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Todorovich?= Date: Mon, 1 Dec 2025 08:39:57 -0300 Subject: [PATCH] [FIX] pre-commit: after merge --- logging_json/json_log.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/logging_json/json_log.py b/logging_json/json_log.py index f9e60fa..2a2fedf 100644 --- a/logging_json/json_log.py +++ b/logging_json/json_log.py @@ -35,7 +35,9 @@ class OdooJsonFormatter(JsonFormatter): if is_true(os.environ.get("ODOO_LOGGING_JSON")): - formatted_message = "%(asctime)s %(pid)s %(levelname)s %(dbname)s %(name)s: %(message)s" + formatted_message = ( + "%(asctime)s %(pid)s %(levelname)s %(dbname)s %(name)s: %(message)s" + ) formatter = OdooJsonFormatter(formatted_message) if is_true(os.environ.get("ODOO_LOGGING_JSON_STDERR")):