commit 5a74a11d04ff447f306d0a84d3f38fcb33d37e0d
parent 12736ba7e57a3ccbb04cad15d342459ca706eed6
Author: Christian Grothoff <grothoff@gnunet.org>
Date: Sat, 14 Feb 2026 22:39:18 +0100
fix #11058
Diffstat:
2 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/src/backend/taler-merchant-httpd_post-challenge-ID-confirm.c b/src/backend/taler-merchant-httpd_post-challenge-ID-confirm.c
@@ -109,6 +109,9 @@ TMH_post_challenge_ID_confirm (const struct TMH_RequestHandler *rh,
}
if (! solved)
{
+ GNUNET_log (GNUNET_ERROR_TYPE_INFO,
+ "Generating JSON response with code %d\n",
+ (int) TALER_EC_MERCHANT_TAN_CHALLENGE_FAILED);
return TALER_MHD_REPLY_JSON_PACK (
hc->connection,
MHD_HTTP_CONFLICT,
diff --git a/src/backend/taler-merchant-httpd_post-orders-ID-pay.c b/src/backend/taler-merchant-httpd_post-orders-ID-pay.c
@@ -4285,6 +4285,9 @@ phase_contract_paid (struct PayContext *pc)
GNUNET_JSON_pack_uint64 ("rtransaction_id",
0))));
}
+ GNUNET_log (GNUNET_ERROR_TYPE_INFO,
+ "Generating JSON response with code %d\n",
+ (int) TALER_EC_MERCHANT_POST_ORDERS_ID_PAY_ALREADY_PAID);
pay_end (pc,
TALER_MHD_REPLY_JSON_PACK (
pc->connection,