Skip to content

Commit

Permalink
use australian tz, just to test changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ychiucco committed Aug 30, 2024
1 parent 9263eef commit 4ee318c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion fractal_server/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@

class FractalLoggingFormatter(logging.Formatter):
def converter(self, timestamp):
return datetime.datetime.fromtimestamp(timestamp, tz=ZoneInfo("CET"))
return datetime.datetime.fromtimestamp(
timestamp, tz=ZoneInfo("Australia/NSW")
)


LOG_FORMATTER = FractalLoggingFormatter(LOG_FORMAT)
Expand Down

0 comments on commit 4ee318c

Please sign in to comment.