removed temporary debug traces
authorYann Collet <cyan@fb.com>
Mon, 10 Sep 2018 22:51:53 +0000 (15:51 -0700)
committerYann Collet <cyan@fb.com>
Mon, 10 Sep 2018 22:51:53 +0000 (15:51 -0700)
lib/lz4.c

index dbda4f1..c68a7da 100644 (file)
--- a/lib/lz4.c
+++ b/lib/lz4.c
@@ -1583,14 +1583,12 @@ _copy_match:
         /* specific : partial decode : does not respect end parsing restrictions */
         assert(op<=oend);
         if (partialDecoding && (cpy > oend-12)) {
-            DEBUGLOG(2, "match copy close to the end");
             size_t const mlen = MIN(length, (size_t)(oend-op));
             const BYTE* const matchEnd = match + mlen;
             BYTE* const copyEnd = op + mlen;
             if (matchEnd > op) {   /* overlap copy */
                 while (op < copyEnd) *op++ = *match++;
             } else {
-                DEBUGLOG(2, "let's memcopy %zu bytes (non overlapping)", mlen);
                 memcpy(op, match, mlen);
             }
             op = copyEnd;