X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=termlists.c;h=f663a8778b3b484bd6c2ef1d0a975d62dcf54839;hb=bd48f097f6b7fca53d326fb84d373fd0962e745b;hp=fbf346e1996173b368b9ae6f411b2da49eb5c2de;hpb=d7967e62bb987396444404f5e6ed59bbda5f5131;p=pazpar2-moved-to-github.git diff --git a/termlists.c b/termlists.c index fbf346e..f663a87 100644 --- a/termlists.c +++ b/termlists.c @@ -1,5 +1,5 @@ /* - * $Id: termlists.c,v 1.1 2006-11-24 20:29:07 quinn Exp $ + * $Id: termlists.c,v 1.2 2006-11-27 14:35:15 quinn Exp $ */ #include @@ -124,7 +124,6 @@ void termlist_insert(struct termlist *tl, const char *term) { if (!strcmp(term, (*p)->term.term)) { - yaz_log(YLOG_LOG, "Found a matching term: %s", term); (*p)->term.frequency++; update_highscore(tl, &((*p)->term)); break; @@ -132,7 +131,6 @@ void termlist_insert(struct termlist *tl, const char *term) } if (!*p) // We made it to the end of the bucket without finding match { - yaz_log(YLOG_DEBUG, "Added a new term: %s", term); struct termlist_bucket *new = nmem_malloc(tl->nmem, sizeof(struct termlist_bucket)); new->term.term = nmem_strdup(tl->nmem, term);