From: Dennis Schafroth Date: Tue, 24 Aug 2010 15:51:55 +0000 (+0200) Subject: Remove the extensive logging X-Git-Tag: v4.1.0~38 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=5e1889250160764822014ce89ee19dc84e5ce310;hp=83fe7a135733a28f6baecbfb054271163e8f46f6 Remove the extensive logging --- diff --git a/src/solr.c b/src/solr.c index dac8587..a7cdb52 100644 --- a/src/solr.c +++ b/src/solr.c @@ -76,12 +76,10 @@ int yaz_solr_decode_response(ODR o, Z_HTTP_Response *hres, Z_SRW_PDU **pdup) odr_intdup(o, odr_atoi( (const char *) attr->children->content)); - yaz_log(YLOG_DEBUG, "SOLR total results: %d ", atoi( attr->children->content)); } else if (!strcmp((const char *) attr->name, "start")) { start = odr_atoi((const char *) attr->children->content); - yaz_log(YLOG_DEBUG, "SOLR start: %d ", atoi( attr->children->content)); } } } @@ -95,7 +93,6 @@ int yaz_solr_decode_response(ODR o, Z_HTTP_Response *hres, Z_SRW_PDU **pdup) for (node = ptr->children; node; node = node->next) if (node->type == XML_ELEMENT_NODE) sr->num_records++; - yaz_log(YLOG_DEBUG, "SOLR results in response: %d ", sr->num_records); sr->records = odr_malloc(o, sizeof(*sr->records) * sr->num_records); @@ -119,7 +116,6 @@ int yaz_solr_decode_response(ODR o, Z_HTTP_Response *hres, Z_SRW_PDU **pdup) record->recordData_buf[buf->use] = '\0'; // TODO Solve the real problem: Making the recordPosition 1-based due to "funny" code in zoom-sru record->recordPosition = odr_intdup(o, start + offset + 1); - yaz_log(YLOG_DEBUG, "SOLR pos=" ODR_INT_PRINTF, *record->recordPosition); xmlBufferFree(buf);