From: Christos Tsantilas Date: Sat, 21 May 2016 17:29:19 +0000 (+1200) Subject: Increase debug level in a peek-and-splice related debug message X-Git-Tag: SQUID_3_5_20~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=afbe0e28d13cc051de2feb8b8733891d28dc969c;p=thirdparty%2Fsquid.git Increase debug level in a peek-and-splice related debug message It may produced one debugging line for each SSL transaction in some cases --- diff --git a/src/ssl/PeerConnector.cc b/src/ssl/PeerConnector.cc index 377a9fc708..8760f6c379 100644 --- a/src/ssl/PeerConnector.cc +++ b/src/ssl/PeerConnector.cc @@ -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; }