summaryrefslogtreecommitdiffstats
path: root/src/net/pvsDiscoveredServer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/pvsDiscoveredServer.cpp')
-rw-r--r--src/net/pvsDiscoveredServer.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/net/pvsDiscoveredServer.cpp b/src/net/pvsDiscoveredServer.cpp
index efa1506..dae27b0 100644
--- a/src/net/pvsDiscoveredServer.cpp
+++ b/src/net/pvsDiscoveredServer.cpp
@@ -46,9 +46,8 @@ void PVSDiscoveredServer::ssl_Error( const QList<QSslError> & errors )
if (err.error() == QSslError::SelfSignedCertificate) {
continue; // Also, this will always be the case; we check the fingerprint later
}
- //ConsoleLog writeNetwork(err.errorString().toUtf8().data());
- //ConsoleLog writeNetwork("***** SSL ERROR, ABORTING *****");
- qDebug("Unhandled SSL Error in SD: %s", qPrintable(err.errorString()));
+ // http://doc.trolltech.com/4.7//qsslerror.html#SslError-enum
+ qDebug("Unhandled SSL Error %i: %s", err.error(), qPrintable(err.errorString()));
return;
}
_socket->ignoreSslErrors();