From df34a8f1d59593c3da1da733b5572a12e7cd2d7d Mon Sep 17 00:00:00 2001 From: Ryan howard Date: Wed, 23 Oct 2024 13:55:31 -0400 Subject: [PATCH] use the message only formatter instead --- api/src/opentrons/util/logging_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/opentrons/util/logging_config.py b/api/src/opentrons/util/logging_config.py index 944f4d3d5ed..42a32501576 100644 --- a/api/src/opentrons/util/logging_config.py +++ b/api/src/opentrons/util/logging_config.py @@ -125,7 +125,7 @@ def _buildroot_config(level_value: int) -> Dict[str, Any]: }, "sensor": { "class": "logging.handlers.RotatingFileHandler", - "formatter": "basic", + "formatter": "message_only", "filename": sensor_log_filename, "maxBytes": 1000000, "level": logging.DEBUG,