From 76952b90c1fa2a7a437df113cedb50e3b08fe32f Mon Sep 17 00:00:00 2001 From: Heikki Hannikainen Date: Thu, 16 Feb 2017 21:34:42 +0200 Subject: [PATCH] http: less debug log --- src/http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/http.c b/src/http.c index db80c28..eec1b9e 100644 --- a/src/http.c +++ b/src/http.c @@ -443,7 +443,7 @@ static int http_compress_gzip(char *in, int ilen, char *out, int ospace) } int olen = ospace - ctx.avail_out; - hlog(LOG_DEBUG, "http_compress_gzip: compressed %d bytes to %d bytes: %.1f %%", ilen, olen, (float)olen / (float)ilen * 100.0); + //hlog(LOG_DEBUG, "http_compress_gzip: compressed %d bytes to %d bytes: %.1f %%", ilen, olen, (float)olen / (float)ilen * 100.0); (void)deflateEnd(&ctx);