From f2df28eecb93467c01f7f422883a08866819b637 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Thu, 7 Oct 2021 22:59:49 +0200 Subject: [PATCH] fix: fix format string of the json logger (#85) --- dockerautotag/logging.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerautotag/logging.py b/dockerautotag/logging.py index cb75f24..ba0dcff 100644 --- a/dockerautotag/logging.py +++ b/dockerautotag/logging.py @@ -11,7 +11,7 @@ from dockerautotag.utils import Singleton from dockerautotag.utils import to_bool CONSOLE_FORMAT = "{}[%(levelname)s]{} %(message)s" -JSON_FORMAT = "(asctime) (levelname) (message)" +JSON_FORMAT = "%(asctime)s %(levelname)s %(message)s" def _should_do_markup():