From: wessels <> Date: Wed, 4 Oct 2000 09:41:20 +0000 (+0000) Subject: DW: X-Git-Tag: SQUID_3_0_PRE1~1838 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=2a4506f15b92d2960c1e758207dd4dbc322f0e9e;p=thirdparty%2Fsquid.git DW: - forcing miss due to range_offset_limit debugging should not be at level 1. --- diff --git a/src/client_side.cc b/src/client_side.cc index 7794d08175..8beea9cbbc 100644 --- a/src/client_side.cc +++ b/src/client_side.cc @@ -1,6 +1,6 @@ /* - * $Id: client_side.cc,v 1.501 2000/10/04 02:18:48 wessels Exp $ + * $Id: client_side.cc,v 1.502 2000/10/04 03:41:20 wessels Exp $ * * DEBUG: section 33 Client-side Routines * AUTHOR: Duane Wessels @@ -2049,7 +2049,7 @@ clientProcessRequest2(clientHttpRequest * http) r->flags.we_dont_do_ranges = 1; return LOG_TCP_MISS; } else if (clientCheckRangeOffsetLimit(e, r->range)) { - debug(33, 1) ("clientProcessRequest2: forcing miss due to range_offset_limit\n"); + debug(33, 3) ("clientProcessRequest2: forcing miss due to range_offset_limit\n"); http->entry = NULL; r->flags.we_dont_do_ranges = 1; return LOG_TCP_MISS;