summaryrefslogtreecommitdiffstats
path: root/src/network/ssl/qsslconfiguration.cpp
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@theqtcompany.com>2014-12-08 13:35:47 +0100
committerKai Koehne <kai.koehne@theqtcompany.com>2014-12-10 11:07:46 +0100
commitf17d7a124f0fa817a7e1a2dda6f48098432c0dc0 (patch)
treeac5b4e3713af87a82add0cebc5a6628997435ed2 /src/network/ssl/qsslconfiguration.cpp
parent7d2357b0a8911191451fd89279ba30e5fd6ccb84 (diff)
Use categorized logging for ssl code
Place all debug output into the 'qt.network.ssl' category. This allows people to disable certain warnings at runtime. Task-number: QTBUG-43173 Change-Id: Ide731fae3109f9cd7730cc096ee069a5b99d35f1 Reviewed-by: Richard J. Moore <rich@kde.org>
Diffstat (limited to 'src/network/ssl/qsslconfiguration.cpp')
-rw-r--r--src/network/ssl/qsslconfiguration.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/network/ssl/qsslconfiguration.cpp b/src/network/ssl/qsslconfiguration.cpp
index 2aa59e5d18..7bb6e02b7e 100644
--- a/src/network/ssl/qsslconfiguration.cpp
+++ b/src/network/ssl/qsslconfiguration.cpp
@@ -32,6 +32,7 @@
**
****************************************************************************/
+#include "qssl_p.h"
#include "qsslconfiguration.h"
#include "qsslconfiguration_p.h"
#include "qsslsocket.h"
@@ -341,7 +342,8 @@ int QSslConfiguration::peerVerifyDepth() const
void QSslConfiguration::setPeerVerifyDepth(int depth)
{
if (depth < 0) {
- qWarning("QSslConfiguration::setPeerVerifyDepth: cannot set negative depth of %d", depth);
+ qCWarning(lcSsl,
+ "QSslConfiguration::setPeerVerifyDepth: cannot set negative depth of %d", depth);
return;
}
d->peerVerifyDepth = depth;