From: Amos Jeffries Date: Sun, 15 Jan 2017 13:50:10 +0000 (+1300) Subject: Reduce debugs in tls_read_method X-Git-Tag: M-staged-PR71~284^2~9 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c824e69a4401484382b46a8db3f8fa77ec64972a;p=thirdparty%2Fsquid.git Reduce debugs in tls_read_method --- diff --git a/src/security/Session.cc b/src/security/Session.cc index 2649aafb08..531023df38 100644 --- a/src/security/Session.cc +++ b/src/security/Session.cc @@ -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");