diff --git a/amivapi/bootstrap.py b/amivapi/bootstrap.py
index ebcd37a52ff02683dc9f74c7843500ef90f98a76..2cb15ce4204251371f9c21714d9e94ec76dff753 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