From cfac55efe0465dcbb5e712b9ac22631cf694a34d Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Fri, 17 Dec 2021 12:21:53 +0100 Subject: [PATCH] fix(app): Add some more debugging --- flaschengeist/app.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/flaschengeist/app.py b/flaschengeist/app.py index a2933fe..8259b68 100644 --- a/flaschengeist/app.py +++ b/flaschengeist/app.py @@ -70,6 +70,8 @@ def __load_plugins(app): else: logger.info(f"Using plugin: {entry_point.name}") app.config["FG_PLUGINS"][entry_point.name] = plugin + else: + logger.debug(f"Skip disabled plugin {entry_point.name}") if "FG_AUTH_BACKEND" not in app.config: logger.error("No authentication plugin configured or authentication plugin not found") raise RuntimeError("No authentication plugin configured or authentication plugin not found")