]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Increase debug level in a peek-and-splice related debug message
authorChristos Tsantilas <chtsanti@users.sourceforge.net>
Sat, 21 May 2016 17:29:19 +0000 (05:29 +1200)
committerAmos Jeffries <squid3@treenet.co.nz>
Sat, 21 May 2016 17:29:19 +0000 (05:29 +1200)
It may produced one debugging line for each SSL transaction in some cases

src/ssl/PeerConnector.cc

index 377a9fc708df7a23b36040b8886fd65bd5e19060..8760f6c3798b82663e043a2346631c11773fde1a 100644 (file)
@@ -598,7 +598,7 @@ Ssl::PeerConnector::handleNegotiateError(const int ret)
 
     case SSL_ERROR_WANT_WRITE:
         if ((srvBio->bumpMode() == Ssl::bumpPeek || srvBio->bumpMode() == Ssl::bumpStare) && srvBio->holdWrite()) {
-            debugs(81, DBG_IMPORTANT, "hold write on SSL connection on FD " << fd);
+            debugs(81, 3, "hold write on SSL connection on FD " << fd);
             checkForPeekAndSplice();
             return;
         }