From 60c21bed366d026b1626d74792fd1f00748a3011 Mon Sep 17 00:00:00 2001 From: nicolas Date: Mon, 25 May 2026 23:12:32 -0300 Subject: [PATCH] chore: add microsecond resolution to structlog timestamps --- common/log.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/log.py b/common/log.py index d853f04..c7ed8cc 100644 --- a/common/log.py +++ b/common/log.py @@ -111,7 +111,7 @@ def configure_logging(level: str = "INFO", log_file: Path | None = None) -> None cache_logger_on_first_use=True, processors=[ structlog.stdlib.add_log_level, - structlog.processors.TimeStamper(fmt="iso"), + structlog.processors.TimeStamper(fmt="%Y-%m-%d %H:%M:%S.%f"), structlog.processors.JSONRenderer(), ], )