debug: Change DEBUG logs to INFO to trace title extraction
Local Docker Build (Dev) / build-dev (push) Successful in 18s

This commit is contained in:
2025-09-25 09:32:58 -04:00
parent b4fe0cb7fe
commit e870474f07
+2 -2
View File
@@ -779,7 +779,7 @@ class TVProcessor:
# If no title from Sonarr, try to extract from filename
if not metadata["title"] and season_dir:
_log("DEBUG", f"📁 No title from Sonarr for S{season_num:02d}E{episode_num:02d}, trying filename extraction")
_log("INFO", f"📁 No title from Sonarr for S{season_num:02d}E{episode_num:02d}, trying filename extraction")
filename_title = self._extract_title_from_filename(season_dir, season_num, episode_num)
if filename_title:
metadata["title"] = filename_title
@@ -801,7 +801,7 @@ class TVProcessor:
import re
# Look for video files matching this episode
season_pattern = f"S{season_num:02d}E{episode_num:02d}"
_log("DEBUG", f"🔍 Searching for title in files for {season_pattern} in directory: {season_dir}")
_log("INFO", f"🔍 Searching for title in files for {season_pattern} in directory: {season_dir}")
for video_file in season_dir.glob("*.mkv"):
filename = video_file.name