From: Amos Jeffries Date: Fri, 6 Jun 2014 10:45:26 +0000 (-0700) Subject: Revert unnecessary debug in rev.13450 X-Git-Tag: SQUID_3_5_0_1~194 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e01330059d5b99aa39748f0ab9a5a82fadf73901;p=thirdparty%2Fsquid.git Revert unnecessary debug in rev.13450 --- diff --git a/src/client_side.cc b/src/client_side.cc index 56a00c1411..fb23f2ecd3 100644 --- a/src/client_side.cc +++ b/src/client_side.cc @@ -2395,7 +2395,7 @@ ConnStateData::In::maybeMakeSpaceAvailable() const SBuf::size_type wantCapacity = min(static_cast(Config.maxRequestBufferSize), haveCapacity*2); buf.reserveCapacity(wantCapacity); } - debugs(33, 2, "growing request buffer: available=" << buf.spaceSize() << " used=" << buf.length() << " want=" << wantCapacity); + debugs(33, 2, "growing request buffer: available=" << buf.spaceSize() << " used=" << buf.length()); } return (buf.spaceSize() >= 2); }