merchant

Merchant backend to process payments, run by merchants
Log | Files | Refs | Submodules | README | LICENSE

commit bad0d57b0fc4f5c7d544c7ca027ffe9c2e4d2741
parent dc0907d254a901491e50bb955d8ed10c8c9655b7
Author: Florian Dold <florian.dold@gmail.com>
Date:   Sat, 31 Aug 2019 13:46:28 +0200

logging

Diffstat:
Msrc/backend/taler-merchant-httpd_pay.c | 9++++++---
1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/src/backend/taler-merchant-httpd_pay.c b/src/backend/taler-merchant-httpd_pay.c @@ -680,7 +680,7 @@ check_payment_sufficient (struct PayContext *pc) } GNUNET_log (GNUNET_ERROR_TYPE_INFO, - "Amount received from wallet: %s\n" + "Amount received from wallet: %s\n", TALER_amount_to_string (&acc_amount)); GNUNET_log (GNUNET_ERROR_TYPE_INFO, @@ -688,8 +688,11 @@ check_payment_sufficient (struct PayContext *pc) TALER_amount_to_string (&acc_fee)); GNUNET_log (GNUNET_ERROR_TYPE_INFO, - "Total wire fee: %s\nMax wire fee: %s\n", - TALER_amount_to_string (&total_wire_fee), + "Total wire fee: %s\n", + TALER_amount_to_string (&total_wire_fee)); + + GNUNET_log (GNUNET_ERROR_TYPE_INFO, + "Max wire fee: %s\n", TALER_amount_to_string (&pc->max_wire_fee)); GNUNET_log (GNUNET_ERROR_TYPE_INFO,