debug(backend): add early print to trace app.py startup

This commit is contained in:
ajaysi
2026-04-05 21:12:07 +05:30
parent cc2443cf5b
commit 0680bf98a2

View File

@@ -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: