Mention connection object in debug logs

This commit is contained in:
Jean-Baptiste Quenot 2009-09-18 17:16:36 +02:00 committed by Daniele Varrazzo
parent cd19f9115d
commit b8ce51d9c2

View File

@ -773,7 +773,7 @@ pq_execute(cursorObject *curs, const char *query, int async)
if (async == 0) { if (async == 0) {
IFCLEARPGRES(curs->pgres); IFCLEARPGRES(curs->pgres);
Dprintf("pq_execute: executing SYNC query:"); Dprintf("pq_execute: executing SYNC query: pgconn = %p", curs->conn->pgconn);
Dprintf(" %-.200s", query); Dprintf(" %-.200s", query);
if (!psyco_green()) { if (!psyco_green()) {
curs->pgres = PQexec(curs->conn->pgconn, query); curs->pgres = PQexec(curs->conn->pgconn, query);
@ -799,7 +799,7 @@ pq_execute(cursorObject *curs, const char *query, int async)
else if (async == 1) { else if (async == 1) {
int ret; int ret;
Dprintf("pq_execute: executing ASYNC query:"); Dprintf("pq_execute: executing ASYNC query: pgconn = %p", curs->conn->pgconn);
Dprintf(" %-.200s", query); Dprintf(" %-.200s", query);
IFCLEARPGRES(curs->pgres); IFCLEARPGRES(curs->pgres);
@ -1402,7 +1402,7 @@ pq_fetch(cursorObject *curs)
break; break;
default: default:
Dprintf("pq_fetch: uh-oh, something FAILED"); Dprintf("pq_fetch: uh-oh, something FAILED: pgconn = %p", curs->conn);
pq_raise(curs->conn, curs, NULL); pq_raise(curs->conn, curs, NULL);
IFCLEARPGRES(curs->pgres); IFCLEARPGRES(curs->pgres);
ex = -1; ex = -1;