From c1a0d1230f98bfb0fd88cfc39eec90cbb8782fad Mon Sep 17 00:00:00 2001 From: Dennis Schafroth Date: Wed, 16 Mar 2011 14:55:55 +0100 Subject: [PATCH] Remove extensive DEBUG logging of facets --- src/client.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/client.c b/src/client.c index 832eb3b..ad5f44a 100644 --- a/src/client.c +++ b/src/client.c @@ -639,15 +639,12 @@ static int client_set_facets_request(struct client *cl, ZOOM_connection link) int client_has_facet(struct client *cl, const char *name) { ZOOM_facet_field facet_field; if (!cl || !cl->resultset || !name) { - yaz_log(YLOG_DEBUG, "client has facet: Missing %p %p %s", cl, (cl ? cl->resultset: 0), name); return 0; } facet_field = ZOOM_resultset_get_facet_field(cl->resultset, name); if (facet_field) { - yaz_log(YLOG_DEBUG, "client: has facets for %s", name); return 1; } - yaz_log(YLOG_DEBUG, "client: No facets for %s", name); return 0; } -- 1.7.10.4