ci: set debug log level

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2021-08-23 19:14:24 +02:00
parent 27cc5d7138
commit 0d00b9cc0d
1 changed files with 2 additions and 1 deletions

View File

@ -4,5 +4,6 @@ from yaml import safe_dump
with open("local.env.yml", "w") as _config:
safe_dump({
"secret_key": generate_client_id()
"secret_key": generate_client_id(),
"log_level": "debug"
}, _config, default_flow_style=False)