1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-11 16:44:05 +02:00

More debugging

This commit is contained in:
Jeff Mitchell
2011-02-12 21:46:29 -05:00
parent 12555372d6
commit 5c152033ea

View File

@@ -362,7 +362,10 @@ TwitterPlugin::registerOffer( const QString &screenName, const QHash< QString, Q
qDebug() << Q_FUNC_INFO;
if ( !peerData.contains( "node" ) || !peerData.contains( "okey" ) )
{
qDebug() << "TwitterPlugin could not find node and/or okey for peer " << screenName;
if ( !peerData.contains( "okey" ) )
qDebug() << "TwitterPlugin could not find okey to register offer for peer " << screenName;
if ( !peerData.contains( "node" ) )
qDebug() << "TwitterPlugin could not find node to register offer for peer " << screenName;
return;
}
qDebug() << "TwitterPlugin registering offer to " << QString( '@' + screenName ) << " with node " << peerData["node"].toString() << " and offeredkey " << peerData["okey"].toString();