diff --git a/src/libtomahawk/album.cpp b/src/libtomahawk/album.cpp index 6e39a0ced..f3e426a0a 100644 --- a/src/libtomahawk/album.cpp +++ b/src/libtomahawk/album.cpp @@ -31,7 +31,6 @@ using namespace Tomahawk; Album::~Album() { - qDebug() << "DELETING ALBUM:" << m_name; delete m_cover; } diff --git a/src/libtomahawk/dropjob.cpp b/src/libtomahawk/dropjob.cpp index c1cfd9271..3de74cace 100644 --- a/src/libtomahawk/dropjob.cpp +++ b/src/libtomahawk/dropjob.cpp @@ -678,9 +678,6 @@ DropJob::onTracksAdded( const QList& tracksList ) m_dropJob = 0; } - foreach ( const query_ptr & q, tracksList ) - qDebug() << "DropJob got track added:" << q->track() << q->artist() << q->solved() << q->playable() << q->results().count(); - m_resultList.append( tracksList ); if ( --m_queryCount == 0 ) @@ -703,12 +700,10 @@ DropJob::tracksFromDB( const QList< query_ptr >& tracks ) // Tracks that we get from databasecommand_alltracks are resolved only against the database and explicitly marked // as finished. if the source they resolve to is offline they will not resolve against any resolver. // explicitly resolve them if they fall in that case first - qDebug() << "Got track results in dropjob from database" << tracks.size(); foreach( const query_ptr& track, tracks ) { if ( !track->playable() && !track->solved() && track->results().size() ) // we have offline results { - qDebug() << "Found a db track that is not playable but marked as finished, forcing re-resolve"; track->setResolveFinished( false ); Pipeline::instance()->resolve( track ); }