diff options
Diffstat (limited to 'src/postgres/postgres.c')
-rw-r--r-- | src/postgres/postgres.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/postgres/postgres.c b/src/postgres/postgres.c index f286ff7058..4798c129d3 100644 --- a/src/postgres/postgres.c +++ b/src/postgres/postgres.c @@ -192,7 +192,8 @@ GNUNET_POSTGRES_connect (const struct GNUNET_CONFIGURATION_Handle * cfg, { GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, "postgres", - _("Unable to initialize Postgres: %s\n"), + _("Unable to connect to Postgres database '%s': %s\n"), + conninfo, PQerrorMessage (dbh)); PQfinish (dbh); return NULL; |