Skip to content

Commit

Permalink
Add debug
Browse files Browse the repository at this point in the history
  • Loading branch information
TEALC82 committed Jul 14, 2024
1 parent 48f1cc0 commit b8e8c45
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions stream_fusion/utils/filter_results.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,8 @@ def remove_non_matching_title(items, titles):

for item in items:
for cleaned_title in cleaned_titles:
logger.debug("\ncleaned_titles: " + cleaned_title)
logger.debug("parsed_title: " + item.parsed_data.parsed_title + "\n")
if title_match(cleaned_title, item.parsed_data.parsed_title):
filtered_items.append(item)
break
Expand Down

0 comments on commit b8e8c45

Please sign in to comment.