From: Amos Jeffries Date: Mon, 20 Dec 2010 23:44:21 +0000 (-0700) Subject: Reduce debug level on bodypipe re-write change X-Git-Tag: SQUID_3_1_10~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b39225ff4ffe2a13b488ceb3130447b766ca5d9b;p=thirdparty%2Fsquid.git Reduce debug level on bodypipe re-write change - the original reason for adding is unknown - it is an annoyance for some - there have been no big problems tracked down to this bodypipe change over the last few years. It appears relatively harmless. --- diff --git a/src/client_side_request.cc b/src/client_side_request.cc index 88831270f0..a0034d9c56 100644 --- a/src/client_side_request.cc +++ b/src/client_side_request.cc @@ -1044,7 +1044,8 @@ ClientRequestContext::clientRedirectDone(char *result) if (old_request->body_pipe != NULL) { new_request->body_pipe = old_request->body_pipe; old_request->body_pipe = NULL; - debugs(0,0,HERE << "redirecting body_pipe " << new_request->body_pipe << " from request " << old_request << " to " << new_request); + debugs(61,2, HERE << "URL-rewriter diverts body_pipe " << new_request->body_pipe << + " from request " << old_request << " to " << new_request); } new_request->content_length = old_request->content_length;