commit 47a400e04b220d462aaee6cd4b08c792cea83915
parent 2ee4743e81ff713bf59d9605d6d550a86053e892
Author: MS <ms@taler.net>
Date: Thu, 24 Sep 2020 20:00:17 +0200
debug
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/talermerchantdemos/httpcommon/__init__.py b/talermerchantdemos/httpcommon/__init__.py
@@ -44,6 +44,7 @@ def backend_post(backend_url, endpoint, json):
json=response_json,
status_code=resp.status_code
)
+ print("Backend responds to {}: {}".format(final_url, str(response_json)))
return response_json
@@ -75,6 +76,7 @@ def backend_get(backend_url, endpoint, params):
json=response_json,
status_code=resp.status_code
)
+ print("Backend responds to {}: {}".format(final_url, str(response_json)))
return response_json
def fallback_404(error):