From 9d87d50878c80db732441bd15feecc6dd70d4354 Mon Sep 17 00:00:00 2001 From: "W. Felix Handte" Date: Wed, 12 Sep 2018 12:28:53 -0700 Subject: [PATCH] Remove Log Overriding for the Time Being --- lib/compress/zstd_compress.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lib/compress/zstd_compress.c b/lib/compress/zstd_compress.c index b823eb7c4..da8bd1e1e 100644 --- a/lib/compress/zstd_compress.c +++ b/lib/compress/zstd_compress.c @@ -1347,12 +1347,6 @@ static size_t ZSTD_resetCCtx_byAttachingCDict( /* Copy only compression parameters related to tables. */ params.cParams = *cdict_cParams; params.cParams.windowLog = windowLog; - DEBUGLOG(4, "Overriding hashLog from %d to %d", params.cParams.hashLog, cctx->requestedParams.cParams.hashLog); - DEBUGLOG(4, "Overriding chainLog from %d to %d", params.cParams.chainLog, cctx->requestedParams.cParams.chainLog); - if (cctx->requestedParams.cParams.hashLog) - params.cParams.hashLog = cctx->requestedParams.cParams.hashLog; - if (cctx->requestedParams.cParams.chainLog) - params.cParams.chainLog = cctx->requestedParams.cParams.chainLog; ZSTD_resetCCtx_internal(cctx, params, pledgedSrcSize, ZSTDcrp_continue, zbuff); assert(cctx->appliedParams.cParams.strategy == cdict_cParams->strategy);