From 7b2fe71e5eb87d3c8563d6f2e7c5999770c89350 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Sat, 26 Jan 2008 15:32:51 +0000 Subject: [PATCH] Log normalized terms when indexdetails log level is used --- index/extract.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/index/extract.c b/index/extract.c index 9ba1f0b..eaea175 100644 --- a/index/extract.c +++ b/index/extract.c @@ -1,4 +1,4 @@ -/* $Id: extract.c,v 1.277 2008-01-24 16:15:35 adam Exp $ +/* $Id: extract.c,v 1.278 2008-01-26 15:32:51 adam Exp $ Copyright (C) 1995-2007 Index Data ApS @@ -1615,7 +1615,15 @@ static void extract_add_string(RecWord *p, zebra_map_t zm, if (!p->index_name) return; + if (log_level_details) + { + WRBUF w = wrbuf_alloc(); + + wrbuf_write_escaped(w, string, length); + yaz_log(log_level_details, "extract_add_string: %s", wrbuf_cstr(w)); + wrbuf_destroy(w); + } if (zebra_maps_is_index(zm)) { extract_add_index_string(p, zinfo_index_category_index, -- 1.7.10.4