summaryrefslogtreecommitdiff
path: root/talermerchantdemos/httpcommon
diff options
context:
space:
mode:
authorMS <ms@taler.net>2020-09-28 17:22:06 +0200
committerMS <ms@taler.net>2020-09-28 17:22:16 +0200
commit2cfe234822803e4819e4e0481c3aa7a83be562fb (patch)
tree8a3aa51d0dffbadacef6292744c4fe81b80716c6 /talermerchantdemos/httpcommon
parent47a400e04b220d462aaee6cd4b08c792cea83915 (diff)
downloadtaler-merchant-demos-2cfe234822803e4819e4e0481c3aa7a83be562fb.tar.gz
taler-merchant-demos-2cfe234822803e4819e4e0481c3aa7a83be562fb.tar.bz2
taler-merchant-demos-2cfe234822803e4819e4e0481c3aa7a83be562fb.zip
debug
Diffstat (limited to 'talermerchantdemos/httpcommon')
-rw-r--r--talermerchantdemos/httpcommon/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/talermerchantdemos/httpcommon/__init__.py b/talermerchantdemos/httpcommon/__init__.py
index 5eace40..1036f33 100644
--- a/talermerchantdemos/httpcommon/__init__.py
+++ b/talermerchantdemos/httpcommon/__init__.py
@@ -58,7 +58,7 @@ def backend_post(backend_url, endpoint, json):
def backend_get(backend_url, endpoint, params):
headers = {"Authorization": "ApiKey sandbox"}
final_url = urljoin(backend_url, endpoint)
- print("GETting: " + final_url)
+ print("GETting: " + final_url + " with params: " + str(params))
try:
resp = requests.get(
final_url, params=params, headers=headers