X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;ds=sidebyside;f=index%2Frecords.c;h=f4a9cf9ce35c46e5c92c3650ec7e6a040969301e;hb=e43cf25b9705f8428249a707b68f0e148c51e511;hp=60908db1fb2f2b39c0e6a793e52ed21739194836;hpb=2c2dcf07d04f1b52adc104c57273050f47b8b876;p=idzebra-moved-to-github.git diff --git a/index/records.c b/index/records.c index 60908db..f4a9cf9 100644 --- a/index/records.c +++ b/index/records.c @@ -509,8 +509,6 @@ static ZEBRA_RES rec_flush_shared(Records p, short ref_count, zint *sysnos, csize = destLen; if (r == Z_OK) { - yaz_log(YLOG_LOG, "compress %4d %5d %5d", ref_count, - out_offset, csize); break; } if (r != Z_MEM_ERROR) @@ -540,8 +538,6 @@ static ZEBRA_RES rec_flush_shared(Records p, short ref_count, zint *sysnos, yaz_log(YLOG_WARN, "bzBuffToBuffCompress error code=%d", i); csize = 0; } - yaz_log(YLOG_LOG, "compress %4d %5d %5d", ref_count, - out_offset, csize); #endif break; case REC_COMPRESS_NONE: @@ -803,7 +799,6 @@ static Record rec_get_int(Records p, zint sysno) (const Bytef *) in_buf, in_size); if (i == Z_OK) { - yaz_log(YLOG_LOG, "decompress %5d %5d", in_size, bz_size); bz_size = destLen; break; } @@ -830,7 +825,6 @@ static Record rec_get_int(Records p, zint sysno) i = bzBuffToBuffDecompress #endif (bz_buf, &bz_size, in_buf, in_size, 0, 0); - yaz_log(YLOG_LOG, "decompress %5d %5d", in_size, bz_size); if (i == BZ_OK) break; yaz_log(YLOG_LOG, "failed");