]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Reduce debugs in tls_read_method
authorAmos Jeffries <squid3@treenet.co.nz>
Sun, 15 Jan 2017 13:50:10 +0000 (02:50 +1300)
committerAmos Jeffries <squid3@treenet.co.nz>
Sun, 15 Jan 2017 13:50:10 +0000 (02:50 +1300)
src/security/Session.cc

index 2649aafb08d06dd87b720f0fd8e47648c2dba983..531023df38cbfb9ccbdf8b1423cc2814127e9747 100644 (file)
@@ -28,7 +28,7 @@ static int
 tls_read_method(int fd, char *buf, int len)
 {
     auto session = fd_table[fd].ssl.get();
-    debugs(83, 2, "started for session=" << (void*)session);
+    debugs(83, 3, "started for session=" << (void*)session);
 
 #if DONT_DO_THIS && USE_OPENSSL
     if (!SSL_is_init_finished(session)) {
@@ -42,7 +42,6 @@ tls_read_method(int fd, char *buf, int len)
 #elif USE_GNUTLS
     int i = gnutls_record_recv(session, buf, len);
 #endif
-    debugs(83, 1, MYNAME << ": TLS FD " << fd << " read " << i << " bytes");
 
     if (i > 0) {
         debugs(83, 8, "TLS FD " << fd << " session=" << (void*)session << " " << i << " bytes");