From 902042ddd2f2cdafa76ac66f4911433a58fc20bb Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Thu, 31 Aug 2023 08:20:08 -0400 Subject: debug by printf --- newspipe/lib/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/newspipe/lib/utils.py b/newspipe/lib/utils.py index 0ac0a28b..eb20ff4b 100644 --- a/newspipe/lib/utils.py +++ b/newspipe/lib/utils.py @@ -14,6 +14,7 @@ logger = logging.getLogger(__name__) def url_for(endpoint, **values): """ Custom reverse-proxy support for url_for """ + print(f"DEBUG: generating url_for {endpoint}") _uf = f_url_for(endpoint, **values) if application.config and "PREFIX" in application.config: _uf = str(application.config("PREFIX")) + _uf -- cgit