add: debug output

This commit is contained in:
2023-07-07 13:31:11 +02:00
parent 4653b5b425
commit b879bd0a84

View File

@@ -305,7 +305,7 @@ def create_app():
with open(main_config_file) as config_file: with open(main_config_file) as config_file:
config_data = json.load(config_file) config_data = json.load(config_file)
app.config |= config_data app.config |= config_data
print(config_data) print(app.config)
if os.path.isfile(app.config["JSON_CONFIG_FILE"]): if os.path.isfile(app.config["JSON_CONFIG_FILE"]):
with open(app.config["JSON_CONFIG_FILE"]) as f: with open(app.config["JSON_CONFIG_FILE"]) as f: