mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-06 22:26:32 +02:00
* Make Pipeline less verbose.
This commit is contained in:
@@ -93,7 +93,7 @@ Pipeline::databaseReady()
|
|||||||
void
|
void
|
||||||
Pipeline::start()
|
Pipeline::start()
|
||||||
{
|
{
|
||||||
tDebug() << Q_FUNC_INFO << "Shunting this many pending queries:" << m_queries_pending.size();
|
tDebug() << Q_FUNC_INFO << "Shunting" << m_queries_pending.size() << "queries!";
|
||||||
m_running = true;
|
m_running = true;
|
||||||
|
|
||||||
shuntNext();
|
shuntNext();
|
||||||
@@ -319,7 +319,7 @@ Pipeline::reportResults( QID qid, const QList< result_ptr >& results )
|
|||||||
void
|
void
|
||||||
Pipeline::addResultsToQuery( const query_ptr& query, const QList< result_ptr >& results )
|
Pipeline::addResultsToQuery( const query_ptr& query, const QList< result_ptr >& results )
|
||||||
{
|
{
|
||||||
tDebug( LOGVERBOSE ) << Q_FUNC_INFO << query->toString() << results.count();
|
// tDebug( LOGVERBOSE ) << Q_FUNC_INFO << query->toString() << results.count();
|
||||||
|
|
||||||
QList< result_ptr > cleanResults;
|
QList< result_ptr > cleanResults;
|
||||||
foreach ( const result_ptr& r, results )
|
foreach ( const result_ptr& r, results )
|
||||||
@@ -349,7 +349,6 @@ Pipeline::addResultsToQuery( const query_ptr& query, const QList< result_ptr >&
|
|||||||
void
|
void
|
||||||
Pipeline::onResultUrlCheckerDone()
|
Pipeline::onResultUrlCheckerDone()
|
||||||
{
|
{
|
||||||
tDebug() << Q_FUNC_INFO;
|
|
||||||
ResultUrlChecker* checker = qobject_cast< ResultUrlChecker* >( sender() );
|
ResultUrlChecker* checker = qobject_cast< ResultUrlChecker* >( sender() );
|
||||||
if ( !checker )
|
if ( !checker )
|
||||||
return;
|
return;
|
||||||
|
Reference in New Issue
Block a user