From 190bb38fafd7a86652359ffb35cc81d9276a9034 Mon Sep 17 00:00:00 2001 From: Denis Fomin Date: Mon, 11 Nov 2013 15:43:56 +0400 Subject: [PATCH] Add date to gajim logs. Fixes #7556 --- src/common/logging_helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/logging_helpers.py b/src/common/logging_helpers.py index 237cda563..ec5dfe70d 100644 --- a/src/common/logging_helpers.py +++ b/src/common/logging_helpers.py @@ -141,7 +141,7 @@ def init(use_color=False): consoleloghandler.setFormatter( FancyFormatter( '%(asctime)s %(levelname)s %(name)s %(message)s', - '%H:%M:%S', + '%x %H:%M:%S', use_color ) )