diff --git a/mbuni/extras/pgsql-queue/mms_pgsql_queue.c b/mbuni/extras/pgsql-queue/mms_pgsql_queue.c index 97903ad..c4a8fb1 100644 --- a/mbuni/extras/pgsql-queue/mms_pgsql_queue.c +++ b/mbuni/extras/pgsql-queue/mms_pgsql_queue.c @@ -86,7 +86,7 @@ static PGconn *get_conn_real(const char *function, const char *file, const int l c = gwlist_timed_consume(free_conns, DEFAULT_PG_WAIT); - debug("pg_cp",0, "pg_get_conn> %s:%d, %s => %d", file, line, function, (int)c); + /* debug("pg_cp",0, "pg_get_conn> %s:%d, %s => %d", file, line, function, (int)c); */ if (c) { /* might fail if we are shutting down. */ r = PQexec(c, "BEGIN"); /* start a transaction. */ @@ -101,7 +101,7 @@ static void return_conn_real(PGconn *c, const char *function, const char *file, { PGresult *r; - debug("pg_cp", 0, "pg_release_conn> %s:%d, %s => %d", file, line, function, (int)c); + /* debug("pg_cp", 0, "pg_release_conn> %s:%d, %s => %d", file, line, function, (int)c); */ if (free_conns == NULL) return;