1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-21 16:29:43 +01:00

Mention resolver who sent a result too late

This commit is contained in:
Uwe L. Korn 2014-04-05 17:45:24 +01:00
parent b5a56ed149
commit 9c9e1561a2

@ -334,7 +334,14 @@ Pipeline::reportResults( QID qid, const QList< result_ptr >& results )
return;
if ( !d->qids.contains( qid ) )
{
tDebug() << "Result arrived too late for:" << qid;
if ( results.length() > 0 && results[0]->resolvedBy() != NULL )
{
tDebug() << "Result arrived too late for:" << qid << "by" << results[0]->resolvedBy()->name();
}
else
{
tDebug() << "Result arrived too late for:" << qid;
}
return;
}
const query_ptr& q = d->qids.value( qid );