From d79dd566d5688e2ba29a4fa12e94a775d6a5a15e Mon Sep 17 00:00:00 2001 From: Johannes Zumthurm <nimro27@gmx.net> Date: Sat, 16 Nov 2024 20:16:07 +0100 Subject: [PATCH] help pls --- amivapi/bootstrap.py | 1 + 1 file changed, 1 insertion(+) diff --git a/amivapi/bootstrap.py b/amivapi/bootstrap.py index ebcd37a5..2cb15ce4 100644 --- a/amivapi/bootstrap.py +++ b/amivapi/bootstrap.py @@ -75,6 +75,7 @@ def create_app(config_file=None, **kwargs): # Specified path > environment var > default path; abspath for better log user_config = abspath(config_file or getenv('AMIVAPI_CONFIG', 'config.py')) + app.logger.info('This is the user_config path: ' + user_config) try: config.from_pyfile(user_config) config_status = "Config loaded: %s" % user_config -- GitLab