------------------------------------------------------------ revno: 13451 revision-id: squid3@treenet.co.nz-20140606104526-0y26d5ph1t169oft parent: squid3@treenet.co.nz-20140606093802-br05cjrifr5tslet committer: Amos Jeffries branch nick: trunk timestamp: Fri 2014-06-06 03:45:26 -0700 message: Revert unnecessary debug in rev.13450 ------------------------------------------------------------ # Bazaar merge directive format 2 (Bazaar 0.90) # revision_id: squid3@treenet.co.nz-20140606104526-0y26d5ph1t169oft # target_branch: http://bzr.squid-cache.org/bzr/squid3/trunk/ # testament_sha1: 1dd1575cd908273a61d0ed9c4d992fbe784c811c # timestamp: 2014-06-06 10:56:43 +0000 # source_branch: http://bzr.squid-cache.org/bzr/squid3/trunk/ # base_revision_id: squid3@treenet.co.nz-20140606093802-\ # br05cjrifr5tslet # # Begin patch === modified file 'src/client_side.cc' --- src/client_side.cc 2014-06-06 09:38:02 +0000 +++ src/client_side.cc 2014-06-06 10:45:26 +0000 @@ -2395,7 +2395,7 @@ 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); }