From a486f4c4fa5a828843185ff5d0e2534091f4a91a Mon Sep 17 00:00:00 2001 From: ajaysi Date: Mon, 20 Apr 2026 06:26:29 +0530 Subject: [PATCH] Debug: Log podcast router endpoints on startup --- backend/app.py | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/app.py b/backend/app.py index 89df768b..61f597ab 100644 --- a/backend/app.py +++ b/backend/app.py @@ -647,6 +647,7 @@ else: # Include Podcast Maker router (always needed for podcast mode) from api.podcast.router import router as podcast_router +logger.info(f"[PODCAST] Including podcast_router with prefixes: {podcast_router.routes}") app.include_router(podcast_router) router_group_status["podcast_maker"] = { "mounted": True,