From 64bb73ded27c1c4d360d0a28cbc55fc1e9a8155b Mon Sep 17 00:00:00 2001 From: Jeff Mitchell Date: Sat, 12 Feb 2011 23:25:16 -0500 Subject: [PATCH] A bit more debugging --- src/libtomahawk/network/servent.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libtomahawk/network/servent.cpp b/src/libtomahawk/network/servent.cpp index 978d712ff..2b043e9bc 100644 --- a/src/libtomahawk/network/servent.cpp +++ b/src/libtomahawk/network/servent.cpp @@ -125,6 +125,7 @@ Servent::startListening( QHostAddress ha, bool upnp, int port ) QString Servent::createConnectionKey( const QString& name, const QString &nodeid, const QString &key ) { + qDebug() << Q_FUNC_INFO; Q_ASSERT( this->thread() == QThread::currentThread() ); QString _key = ( key.isEmpty() ? uuid() : key ); @@ -132,6 +133,7 @@ Servent::createConnectionKey( const QString& name, const QString &nodeid, const cc->setName( name.isEmpty() ? QString( "KEY(%1)" ).arg( key ) : name ); if( !nodeid.isEmpty() ) cc->setId( nodeid ); + qDebug() << "Creating connection key with name of " << cc->name() << " and id of " << cc->id() << " and key of " << _key; registerOffer( _key, cc ); return _key; }