From: Dennis Schafroth Date: Wed, 16 Mar 2011 13:55:55 +0000 (+0100) Subject: Remove extensive DEBUG logging of facets X-Git-Tag: v1.5.6~39 X-Git-Url: http://lists.indexdata.dk/cgi-bin?a=commitdiff_plain;h=c1a0d1230f98bfb0fd88cfc39eec90cbb8782fad;p=pazpar2-moved-to-github.git Remove extensive DEBUG logging of facets --- 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; }