merchant

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

commit 13977d4545a7a7071e40f6f1114b13049a476947
parent 12373dec23666974eb15698922d1099976277e39
Author: Christian Grothoff <christian@grothoff.org>
Date:   Sat, 13 Jan 2024 21:54:50 +0100

more logging

Diffstat:
Msrc/backend/taler-merchant-httpd_private-post-orders.c | 15++++++++-------
1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/src/backend/taler-merchant-httpd_private-post-orders.c b/src/backend/taler-merchant-httpd_private-post-orders.c @@ -1293,13 +1293,14 @@ serialize_order (struct OrderContext *oc) "refund_deadline", GNUNET_JSON_from_timestamp ( oc->parse_order.refund_deadline))); - GNUNET_log (GNUNET_ERROR_TYPE_INFO, - "Refund deadline for contact is %llu\n", - (unsigned long long) refund_deadline.abs_time.abs_value_us); - GNUNET_log (GNUNET_ERROR_TYPE_INFO, - "Wallet timestamp for contact is %llu\n", - (unsigned long - long) oc->parse_order.timestamp.abs_time.abs_value_us); + GNUNET_log ( + GNUNET_ERROR_TYPE_INFO, + "Refund deadline for contact is %llu\n", + (unsigned long long) oc->parse_order.refund_deadline.abs_time.abs_value_us); + GNUNET_log ( + GNUNET_ERROR_TYPE_INFO, + "Wallet timestamp for contact is %llu\n", + (unsigned long long) oc->parse_order.timestamp.abs_time.abs_value_us); /* Pack does not work here, because it sets zero-values for relative times */ /* auto_refund should only be set if it is not 0 */