Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwurstsalat <mailtrash@posteo.de>2023-11-03 23:20:37 +0300
committerwurstsalat <mailtrash@posteo.de>2023-11-03 23:20:40 +0300
commit52033455efe1277ead65d0f3403ba5b10ecce1e2 (patch)
tree0f2fe90048d413e604f3aa7fc4b7c26a04cc4d55
parentde79ed087629ad10dda0857a1abfe6362b918dd4 (diff)
cq: Logging: Use ISO format for timestamps
Closes #11576
-rw-r--r--gajim/common/logging_helpers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gajim/common/logging_helpers.py b/gajim/common/logging_helpers.py
index 19b1fdfd3..d7e375503 100644
--- a/gajim/common/logging_helpers.py
+++ b/gajim/common/logging_helpers.py
@@ -177,7 +177,7 @@ def init() -> None:
stream_handler.setFormatter(
FancyFormatter(
'%(asctime)s %(levelname)s %(name)-35s %(message)s',
- '%x %H:%M:%S',
+ '%Y-%m-%dT%H:%M:%S',
use_color
)
)