summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/backend/taler-merchant-httpd_pay.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/backend/taler-merchant-httpd_pay.c b/src/backend/taler-merchant-httpd_pay.c
index a367af60..f0a25627 100644
--- 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,