diff options
author | Florian Dold <florian.dold@gmail.com> | 2020-01-17 02:23:38 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2020-01-17 02:23:48 +0100 |
commit | cc862fb2795aefed25b1a7b4d1dcac750f648f1b (patch) | |
tree | 57e9833ea521dd72b8202ed6649991aa4bdab054 /src/exchange/taler-exchange-httpd_validation.c | |
parent | 8ea2af444feec46e9086bb6c410762b18c7252fe (diff) |
payto fixes WIP
Diffstat (limited to 'src/exchange/taler-exchange-httpd_validation.c')
-rw-r--r-- | src/exchange/taler-exchange-httpd_validation.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/exchange/taler-exchange-httpd_validation.c b/src/exchange/taler-exchange-httpd_validation.c index 29c57d89..0ca127eb 100644 --- a/src/exchange/taler-exchange-httpd_validation.c +++ b/src/exchange/taler-exchange-httpd_validation.c @@ -114,8 +114,10 @@ load_account (void *cls, ai->payto_url)) { GNUNET_log (GNUNET_ERROR_TYPE_ERROR, - "URL in Wire response file `%s' does not match URL in configuration!\n", - ai->wire_response_filename); + "URL in Wire response file `%s' does not match URL in configuration (%s vs %s)!\n", + ai->wire_response_filename, + url, + ai->payto_url); json_decref (wire_s); GNUNET_free (url); *ret = GNUNET_SYSERR; |