From: Amos Jeffries Date: Tue, 16 Nov 2010 05:43:47 +0000 (+1300) Subject: Reduce debug level on bodypipe re-write change X-Git-Tag: take1~87 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4194f7b6b5ded1a389d5ac63ecd635d45effff0b;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 28b97083d0..8278b01046 100644 --- a/src/client_side_request.cc +++ b/src/client_side_request.cc @@ -1052,7 +1052,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;