diff --git a/lib/streaming_providers/providers/magenta2/vod_manager.py b/lib/streaming_providers/providers/magenta2/vod_manager.py index 73691f9..a53168b 100644 --- a/lib/streaming_providers/providers/magenta2/vod_manager.py +++ b/lib/streaming_providers/providers/magenta2/vod_manager.py @@ -653,6 +653,11 @@ class VodManager: show_all_href = (lane.get("showAllUrl") or {}).get("href") or None lane_content_href = (lane.get("laneContentLink") or {}).get("href") or None + logger.debug( + f"{self._provider}: Lane '{title}' (flexId={flex_id}) " + f"showAllUrl={show_all_href!r} laneContentLink={lane_content_href!r}" + ) + ref_href = None if show_all_href and "/UnstructuredGrid/" in show_all_href: ref_href = show_all_href @@ -665,6 +670,10 @@ class VodManager: else: content_id = f"UnstructuredGrid/{flex_id}" + logger.debug( + f"{self._provider}: Lane '{title}' → content_id={content_id!r}" + ) + categories.append( VodCategory( name=title,