From 81b8a22d6a9cd68a55211415e404e9994d555849 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Sat, 19 May 2012 09:36:51 +0200 Subject: [PATCH] * Cleaned up InfoSystemWorker debug output. --- src/libtomahawk/infosystem/InfoSystemWorker.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libtomahawk/infosystem/InfoSystemWorker.cpp b/src/libtomahawk/infosystem/InfoSystemWorker.cpp index 59dedf9cf..85528b113 100644 --- a/src/libtomahawk/infosystem/InfoSystemWorker.cpp +++ b/src/libtomahawk/infosystem/InfoSystemWorker.cpp @@ -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(); } }