X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=index%2Fkinput.c;h=5fe9733371fbb44174c69c4cdb1fcf0bf6e5ffac;hb=2de23570d27a0d5f4683e4c9ebd9c13eab2fc2a1;hp=17c6d9f0e84c362496afce178e5ad4d410de8f4a;hpb=ae5c8868f2bee81cebddf3251432eb47c3da3591;p=idzebra-moved-to-github.git diff --git a/index/kinput.c b/index/kinput.c index 17c6d9f..5fe9733 100644 --- a/index/kinput.c +++ b/index/kinput.c @@ -1,5 +1,5 @@ -/* $Id: kinput.c,v 1.81 2007-01-05 10:45:11 adam Exp $ - Copyright (C) 1995-2006 +/* $Id: kinput.c,v 1.83 2007-02-06 09:32:50 adam Exp $ + Copyright (C) 1995-2007 Index Data ApS This file is part of the Zebra server. @@ -818,11 +818,12 @@ void zebra_index_merge (ZebraHandle zh) xfree (kf); if (hi->no_iterations) { /* do not log if nothing happened */ - yaz_log(YLOG_LOG, "Iterations %9" ZINT_FORMAT0, hi->no_iterations); - yaz_log(YLOG_LOG, "Distinct words %9" ZINT_FORMAT0, hi->no_diffs); - yaz_log(YLOG_LOG, "Updates %9" ZINT_FORMAT0, hi->no_updates); - yaz_log(YLOG_LOG, "Deletions %9" ZINT_FORMAT0, hi->no_deletions); - yaz_log(YLOG_LOG, "Insertions %9" ZINT_FORMAT0, hi->no_insertions); + yaz_log(YLOG_LOG, "Iterations: isam/dict " + ZINT_FORMAT "/" ZINT_FORMAT, + hi->no_iterations, hi->no_diffs); + yaz_log(YLOG_LOG, "Dict: inserts/updates/deletions: " + ZINT_FORMAT "/" ZINT_FORMAT "/" ZINT_FORMAT, + hi->no_insertions, hi->no_updates, hi->no_deletions); } key_block_destroy(&zh->reg->key_block); key_heap_destroy(hi, nkeys);