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

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

View File

@ -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():