From f00094ae9149caf21e00641b0bf77d650a265590 Mon Sep 17 00:00:00 2001 From: fubuloubu <3859395+fubuloubu@users.noreply.github.com> Date: Fri, 14 Feb 2025 16:45:04 -0500 Subject: [PATCH] fix(client): render timezone as local time for logs display fixes: #201 --- silverback/cluster/types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/silverback/cluster/types.py b/silverback/cluster/types.py index 296c7109..27c49a4c 100644 --- a/silverback/cluster/types.py +++ b/silverback/cluster/types.py @@ -365,7 +365,7 @@ def __str__(self) -> str: level_str = "" if self.timestamp is not None: - timestamp_str = click_style(f"{self.timestamp:%x %X}", bold=True) + timestamp_str = click_style(f"{self.timestamp.astimezone():%x %X}", bold=True) else: timestamp_str = ""