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

This commit is contained in:
Robert Kaussow 2021-10-07 23:17:27 +02:00 committed by GitHub
parent c5f4f2212f
commit 427356cf61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ import colorama
from pythonjsonlogger import jsonlogger
CONSOLE_FORMAT = "{}%(levelname)s:{} %(message)s"
JSON_FORMAT = "(asctime) (levelname) (message)"
JSON_FORMAT = "%(asctime)s %(levelname)s %(message)s"
def to_bool(string):