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

This commit is contained in:
Robert Kaussow 2021-10-07 22:59:59 +02:00 committed by GitHub
parent 86d84c1235
commit 9a202ecef0
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 gitbatch.utils import Singleton
from gitbatch.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():