1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-23 17:29:42 +01:00

* Cleaned up InfoSystemWorker debug output.

This commit is contained in:
Christian Muehlhaeuser 2012-05-19 09:36:51 +02:00
parent b6b3bf1a1c
commit 81b8a22d6a

View File

@ -192,7 +192,7 @@ InfoSystemWorker::findInfoPlugins()
void
InfoSystemWorker::loadInfoPlugins( const QStringList& pluginPaths )
{
tDebug() << Q_FUNC_INFO << "Attempting to load the following plugin paths: " << pluginPaths;
tDebug() << Q_FUNC_INFO << "Attempting to load the following plugin paths:" << pluginPaths;
if ( pluginPaths.isEmpty() )
return;
@ -219,7 +219,7 @@ InfoSystemWorker::loadInfoPlugins( const QStringList& pluginPaths )
addInfoPlugin( InfoPluginPtr( infoPlugin ) );
}
else
tDebug() << Q_FUNC_INFO << "Loaded invalid plugin: " << loader.fileName();
tDebug() << Q_FUNC_INFO << "Loaded invalid plugin:" << loader.fileName();
}
}