1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-16 19:14:06 +02:00

Add weird debug output from jabber sip

This commit is contained in:
Jeff Mitchell
2011-07-22 16:42:27 -04:00
parent 2f95e0b191
commit 794d6f870c

View File

@@ -524,6 +524,12 @@ JabberPlugin::checkSettings()
reconnect = true;
QNetworkProxy proxyToUse = TomahawkUtils::proxyFactory()->queryProxy( QNetworkProxyQuery( m_currentServer, m_currentPort ) ).first();
qDebug() << "proxyToUse host: " << proxyToUse.hostName() << ", usedProxy host: " << m_usedProxy.hostName();
qDebug() << "proxyToUse port: " << proxyToUse.port() << ", usedProxy port: " << m_usedProxy.port();
qDebug() << "proxyToUse user: " << proxyToUse.user() << ", usedProxy user: " << m_usedProxy.user();
qDebug() << "proxyToUse pass: " << proxyToUse.password() << ", usedProxy pass: " << m_usedProxy.password();
qDebug() << "proxyToUse type: " << proxyToUse.type() << ", usedProxy type: " << m_usedProxy.type();
qDebug() << "proxyToUse caps: " << proxyToUse.capabilities() << ", usedProxy caps: " << m_usedProxy.capabilities();
if ( proxyToUse.hostName() != m_usedProxy.hostName() ||
proxyToUse.port() != m_usedProxy.port() ||
proxyToUse.user() != m_usedProxy.user() ||
@@ -531,7 +537,7 @@ JabberPlugin::checkSettings()
proxyToUse.type() != m_usedProxy.type() ||
proxyToUse.capabilities() != m_usedProxy.capabilities()
)
reconnect = true;
reconnect = true;
m_currentUsername = accountName();
m_currentPassword = readPassword();