aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Logging.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Logging.py b/Logging.py
index dadde2b9..22d10711 100644
--- a/Logging.py
+++ b/Logging.py
@@ -20,7 +20,8 @@ class Log(object):
formatter = BitBotFormatter(
"%(asctime)s [%(levelname)s] %(message)s",
- "%Y-%m-%dT%H:%M:%S.%f%z")
+ "%Y-%m-%dT%H:%M:%S.%fZ")
+ formatter.converter = time.gmtime
stdout_handler = logging.StreamHandler(sys.stdout)
stdout_handler.setLevel(logging.INFO)