X-Git-Url: http://lists.indexdata.dk/cgi-bin?a=blobdiff_plain;ds=sidebyside;f=src%2Fclient.c;h=ad5f44a16c398a5d39783e548e657e6dabcd24fc;hb=c1a0d1230f98bfb0fd88cfc39eec90cbb8782fad;hp=832eb3b9fc03ab7be2045ac6d8a625a68d63720f;hpb=69171b282699fa3f8fa2a03ffd3c5b79abeb619b;p=pazpar2-moved-to-github.git 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; }