mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-17 11:30:49 +02:00
Add weird debug output from jabber sip
This commit is contained in:
@@ -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() ||
|
||||
|
Reference in New Issue
Block a user