From: W. Felix Handte Date: Wed, 12 Sep 2018 19:28:53 +0000 (-0700) Subject: Remove Log Overriding for the Time Being X-Git-Tag: v1.3.6^2~10^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9d87d50878c80db732441bd15feecc6dd70d4354;p=thirdparty%2Fzstd.git Remove Log Overriding for the Time Being --- 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);