From 0680bf98a25df34fc4ca7c2b3826c82ac6630e21 Mon Sep 17 00:00:00 2001 From: ajaysi Date: Sun, 5 Apr 2026 21:12:07 +0530 Subject: [PATCH] debug(backend): add early print to trace app.py startup --- backend/app.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backend/app.py b/backend/app.py index aed0eb58..a4376918 100644 --- a/backend/app.py +++ b/backend/app.py @@ -25,6 +25,8 @@ load_dotenv(override=False) import os if os.getenv("ALWRITY_ENABLED_FEATURES", "").strip().lower() == "podcast": os.environ["LOG_LEVEL"] = "WARNING" + +print(f"[app.py] Starting... ALWRITY_ENABLED_FEATURES={os.getenv('ALWRITY_ENABLED_FEATURES')}", flush=True) def get_enabled_features() -> set: