aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/QXmppStreamFeatures.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/QXmppStreamFeatures.cpp b/src/QXmppStreamFeatures.cpp
index 71a5d32f..142d752a 100644
--- a/src/QXmppStreamFeatures.cpp
+++ b/src/QXmppStreamFeatures.cpp
@@ -21,7 +21,6 @@
*
*/
-#include <QDebug>
#include <QDomElement>
#include "QXmppConstants.h"
@@ -101,10 +100,8 @@ void QXmppStreamFeatures::parse(const QDomElement &element)
if (mechs.namespaceURI() == ns_sasl)
{
QDomElement subElement = mechs.firstChildElement("mechanism");
- qDebug("SASL Authentication mechanisms:");
while(!subElement.isNull())
{
- qDebug() << subElement.text();
if (subElement.text() == QLatin1String("PLAIN"))
m_authMechanisms << QXmppConfiguration::SASLPlain;
else if (subElement.text() == QLatin1String("DIGEST-MD5"))