From 28b4d4afdaa999e2836e5ad6ee62dad704d5ce32 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Thu, 11 Mar 2010 13:01:51 +0100 Subject: [PATCH] YLOG_DEBUG for stmt in client_incref --- src/client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)) { -- 1.7.10.4