Browse Source

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.
tags/v1.3.90
Pierre Ossman 9 years ago
parent
commit
800a35ccdd
2 changed files with 0 additions and 26 deletions
  1. 0
    13
      common/rfb/CSecurityTLS.cxx
  2. 0
    13
      common/rfb/SSecurityTLS.cxx

+ 0
- 13
common/rfb/CSecurityTLS.cxx View File

@@ -67,12 +67,6 @@ StringParameter CSecurityTLS::X509CA("X509CA", "X509 CA certificate", "", ConfVi
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 @@ void CSecurityTLS::initGlobal()

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;
}
}

+ 0
- 13
common/rfb/SSecurityTLS.cxx View File

@@ -45,12 +45,6 @@ StringParameter SSecurityTLS::X509_KeyFile
("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 @@ void SSecurityTLS::initGlobal()
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;
}
}

Loading…
Cancel
Save