From: Adam Dickmeiss Date: Thu, 11 Mar 2010 12:01:51 +0000 (+0100) Subject: YLOG_DEBUG for stmt in client_incref X-Git-Tag: v1.4.0~106 X-Git-Url: http://git.indexdata.com/?a=commitdiff_plain;h=28b4d4afdaa999e2836e5ad6ee62dad704d5ce32;p=pazpar2-moved-to-github.git YLOG_DEBUG for stmt in client_incref --- diff --git a/src/client.c b/src/client.c index 7e1645a..d337ffe 100644 --- a/src/client.c +++ b/src/client.c @@ -602,14 +602,14 @@ struct client *client_create(void) void client_incref(struct client *c) { pazpar2_incref(&c->ref_count, c->mutex); - yaz_log(YLOG_LOG, "client_incref %s %d", client_get_url(c), c->ref_count); + yaz_log(YLOG_DEBUG, "client_incref %s %d", client_get_url(c), c->ref_count); } int client_destroy(struct client *c) { if (c) { - yaz_log(YLOG_LOG, "client_destroy %s %d", + yaz_log(YLOG_DEBUG, "client_destroy %s %d", client_get_url(c), c->ref_count); if (!pazpar2_decref(&c->ref_count, c->mutex)) {