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

This commit is contained in:
Robert Kaussow 2021-10-07 22:59:43 +02:00 committed by GitHub
parent e70b5368ab
commit 8678ab4c00
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 pythonjsonlogger import jsonlogger
import ansibledoctor.exception
CONSOLE_FORMAT = "{}{}[%(levelname)s]{} %(message)s"
JSON_FORMAT = "(asctime) (levelname) (message)"
JSON_FORMAT = "%(asctime)s %(levelname)s %(message)s"
def to_bool(string):