fix: fix format string of the json logger (#185)

This commit is contained in:
Robert Kaussow 2021-10-07 22:59:54 +02:00 committed by GitHub
parent 74558f86e9
commit 1cc28b7708
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ from dockertidy.utils import Singleton
from dockertidy.utils import to_bool from dockertidy.utils import to_bool
CONSOLE_FORMAT = "{}[%(levelname)s]{} %(message)s" CONSOLE_FORMAT = "{}[%(levelname)s]{} %(message)s"
JSON_FORMAT = "(asctime) (levelname) (message)" JSON_FORMAT = "%(asctime)s %(levelname)s %(message)s"
def _should_do_markup(): def _should_do_markup():