Skip to content

Commit

Permalink
fix(client): render timezone as local time for logs display
Browse files Browse the repository at this point in the history
fixes: #201
  • Loading branch information
fubuloubu committed Feb 14, 2025
1 parent efe69f3 commit f00094a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion silverback/cluster/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = ""

Expand Down

0 comments on commit f00094a

Please sign in to comment.