Reduced debug logging to essential in clean_url()

This commit is contained in:
jeancf 2022-11-18 13:56:22 +01:00
parent 37a4419ea6
commit 6308fdc348

View File

@ -111,7 +111,8 @@ def clean_url(dirty_url):
_remove_tracker_params(url_parsed.fragment)
])
logging.debug('Cleaned URL from: ' + dirty_url + ' to: ' + cleaned_url)
if cleaned_url != dirty_url:
logging.debug('Cleaned URL from: ' + dirty_url + ' to: ' + cleaned_url)
return cleaned_url