summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-03-14 15:36:19 +0100
committerChristian Grothoff <christian@grothoff.org>2017-03-14 15:36:19 +0100
commit6d798cecba4902623ca2769b30f6b1a0f554d83e (patch)
tree3224e21bf7a212764bc30bc3d58b111cbb3296e7
parent4b952b30374d73692ecdea7063df4d2e816ebb56 (diff)
downloadexchange-6d798cecba4902623ca2769b30f6b1a0f554d83e.tar.gz
exchange-6d798cecba4902623ca2769b30f6b1a0f554d83e.tar.bz2
exchange-6d798cecba4902623ca2769b30f6b1a0f554d83e.zip
fix logging of BEGIN error
-rw-r--r--src/exchangedb/plugin_exchangedb_postgres.c16
1 files changed, 11 insertions, 5 deletions
diff --git a/src/exchangedb/plugin_exchangedb_postgres.c b/src/exchangedb/plugin_exchangedb_postgres.c
index febbf0c6c..e14e4aa62 100644
--- a/src/exchangedb/plugin_exchangedb_postgres.c
+++ b/src/exchangedb/plugin_exchangedb_postgres.c
@@ -1426,14 +1426,16 @@ postgres_start (void *cls,
struct TALER_EXCHANGEDB_Session *session)
{
PGresult *result;
+ ExecStatusType ex;
result = PQexec (session->conn,
"START TRANSACTION ISOLATION LEVEL SERIALIZABLE");
if (PGRES_COMMAND_OK !=
- PQresultStatus (result))
+ (ex = PQresultStatus (result)))
{
- TALER_LOG_ERROR ("Failed to start transaction: %s\n",
- PQresultErrorMessage (result));
+ TALER_LOG_ERROR ("Failed to start transaction (%s): %s\n",
+ PQresStatus (ex),
+ PQerrorMessage (session->conn));
GNUNET_break (0);
PQclear (result);
return GNUNET_SYSERR;
@@ -1918,7 +1920,11 @@ postgres_reserves_in_insert (void *cls,
}
if (GNUNET_OK != postgres_commit (cls,
session))
+ {
+ GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
+ "Failed to commit transaction adding amount to reserve\n");
return GNUNET_SYSERR;
+ }
return GNUNET_OK;
rollback:
@@ -2173,7 +2179,7 @@ postgres_get_reserve_history (void *cls,
}
rh_tail->type = TALER_EXCHANGEDB_RO_BANK_TO_EXCHANGE;
rh_tail->details.bank = bt;
- }
+ } /* end of 'while (0 < rows)' */
PQclear (result);
}
{
@@ -2232,7 +2238,7 @@ postgres_get_reserve_history (void *cls,
rh_tail = rh_tail->next;
rh_tail->type = TALER_EXCHANGEDB_RO_WITHDRAW_COIN;
rh_tail->details.withdraw = cbc;
- }
+ } /* end of 'while (0 < rows)' */
ret = GNUNET_OK;
PQclear (result);
}