From 203e90dcd425d9aee1ad5a825dcb3e670e739f84 Mon Sep 17 00:00:00 2001 From: jeancf Date: Fri, 18 Nov 2022 12:57:44 +0100 Subject: [PATCH] Added debug messager to clean_url() --- twoot.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/twoot.py b/twoot.py index 2aabe8c..aef7954 100755 --- a/twoot.py +++ b/twoot.py @@ -111,6 +111,8 @@ def clean_url(dirty_url): _remove_tracker_params(url_parsed.fragment) ]) + logging.debug('Cleaned URL from: ' + dirty_url + ' to: ' + cleaned_url) + return cleaned_url