]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
The "hold write" conditions are not important enough for debug level 1.
authorAlex Rousskov <rousskov@measurement-factory.com>
Wed, 13 Apr 2016 05:36:05 +0000 (23:36 -0600)
committerAlex Rousskov <rousskov@measurement-factory.com>
Wed, 13 Apr 2016 05:36:05 +0000 (23:36 -0600)
... and are already reported at lower levels in ServerBio.

I was getting one of this messages for every(?) transaction in Polygraph
tests.

src/ssl/PeekingPeerConnector.cc

index 2b611bd5636ab62abf8661f359711a0fc4948270..9c33aab57a575a771cdd54befeaad94a27b5dfb5 100644 (file)
@@ -270,7 +270,6 @@ Ssl::PeekingPeerConnector::noteWantWrite()
     Ssl::ServerBio *srvBio = static_cast<Ssl::ServerBio *>(b->ptr);
 
     if ((srvBio->bumpMode() == Ssl::bumpPeek || srvBio->bumpMode() == Ssl::bumpStare) && srvBio->holdWrite()) {
-        debugs(81, DBG_IMPORTANT, "hold write on SSL connection on FD " << fd);
         checkForPeekAndSplice();
         return;
     }