merchant

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

commit f7a956bf01babb2ac010cc2fbe2ff663c8290198
parent e35b364a59af58b8faa49878fb6e81213c7de73d
Author: Marcello Stanisci <marcello.stanisci@inria.fr>
Date:   Wed, 21 Jun 2017 18:21:40 +0200

diagnostics

Diffstat:
Msrc/backenddb/plugin_merchantdb_postgres.c | 8++++++--
1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/src/backenddb/plugin_merchantdb_postgres.c b/src/backenddb/plugin_merchantdb_postgres.c @@ -826,8 +826,12 @@ postgres_store_deposit (void *cls, }; GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, - "storing payment for h_contract_terms '%s'\n", - GNUNET_h2s (h_contract_terms)); + "storing payment for h_contract_terms '%s'" + ", coin_pub: %s, amount_with_fee: %s, merchant_pub: %s\n", + GNUNET_h2s (h_contract_terms), + TALER_B2S (coin_pub), + TALER_amount_to_string (amount_with_fee), + TALER_B2S (merchant_pub)); result = GNUNET_PQ_exec_prepared (pg->conn, "insert_deposit", params);