Remove verbose TLS logging
We don't even log this much for RFB protocol stuff, and it makes
it very annoying to run with full debugging on.
diff --git a/common/rfb/CSecurityTLS.cxx b/common/rfb/CSecurityTLS.cxx
index 30de37e..222748c 100644
--- a/common/rfb/CSecurityTLS.cxx
+++ b/common/rfb/CSecurityTLS.cxx
@@ -67,12 +67,6 @@
StringParameter CSecurityTLS::X509CRL("X509CRL", "X509 CRL file", "", ConfViewer);
static LogWriter vlog("TLS");
-static LogWriter vlog_raw("RawTLS");
-
-static void debug_log(int level, const char* str)
-{
- vlog_raw.debug("[%d]: %s", level, str);
-}
void CSecurityTLS::initGlobal()
{
@@ -80,13 +74,6 @@
if (!globalInitDone) {
gnutls_global_init();
-
- /* 100 means debug log */
- if (vlog_raw.getLevel() >= 100) {
- gnutls_global_set_log_level(10);
- gnutls_global_set_log_function(debug_log);
- }
-
globalInitDone = true;
}
}
diff --git a/common/rfb/SSecurityTLS.cxx b/common/rfb/SSecurityTLS.cxx
index a40ec13..d4e88d7 100644
--- a/common/rfb/SSecurityTLS.cxx
+++ b/common/rfb/SSecurityTLS.cxx
@@ -45,12 +45,6 @@
("X509Key", "Path to the key of the X509 certificate in PEM format", "", ConfServer);
static LogWriter vlog("TLS");
-static LogWriter vlog_raw("RawTLS");
-
-static void debug_log(int level, const char* str)
-{
- vlog.debug("[%d]: %s", level, str);
-}
void SSecurityTLS::initGlobal()
{
@@ -59,13 +53,6 @@
if (!globalInitDone) {
if (gnutls_global_init() != GNUTLS_E_SUCCESS)
throw AuthFailureException("gnutls_global_init failed");
-
- /* 100 means debug log */
- if (vlog_raw.getLevel() >= 100) {
- gnutls_global_set_log_level(10);
- gnutls_global_set_log_function(debug_log);
- }
-
globalInitDone = true;
}
}