removed debug messages spamming the logs

This commit is contained in:
lars 2022-10-26 11:00:21 +02:00
parent 1be7f6e337
commit c1a105ee6a

View File

@ -92,8 +92,8 @@ def search_for_track(row):
title_match, title_distance = phonetic_compares.match_titles(track, title_option)
band_match, band_distance = phonetic_compares.match_artists(artist, band_option)
print(track, title_option, title_match, title_distance)
print(artist, band_option, band_match, band_distance)
logging.debug(f"{(track, title_option, title_match, title_distance)}")
logging.debug(f"{(artist, band_option, band_match, band_distance)}")
if not title_match and not band_match:
return get_download_link(track_url)