diff --git a/src/libtomahawk/infosystem/InfoSystemCache.cpp b/src/libtomahawk/infosystem/InfoSystemCache.cpp index 3749ae7ec..bf48317f6 100644 --- a/src/libtomahawk/infosystem/InfoSystemCache.cpp +++ b/src/libtomahawk/infosystem/InfoSystemCache.cpp @@ -215,7 +215,7 @@ InfoSystemCache::updateCacheSlot( Tomahawk::InfoSystem::InfoStringHash criteria, QDir dir( cacheDir ); if( !dir.exists( cacheDir ) ) { - qDebug() << "Creating cache directory " << cacheDir; + qDebug() << "Creating cache directory" << cacheDir; if( !dir.mkpath( cacheDir ) ) { tLog() << "Failed to create cache dir! Bailing..."; diff --git a/src/libtomahawk/utils/TomahawkCache.cpp b/src/libtomahawk/utils/TomahawkCache.cpp index d0c679121..5ff21da6e 100644 --- a/src/libtomahawk/utils/TomahawkCache.cpp +++ b/src/libtomahawk/utils/TomahawkCache.cpp @@ -79,7 +79,7 @@ Cache::pruneTimerFired() if ( data.maxAge < currentMSecsSinceEpoch ) { cached_settings.remove( key ); - tLog() << Q_FUNC_INFO << "Removed stale entry: " << client_identifier << key; + tLog() << Q_FUNC_INFO << "Removed stale entry:" << client_identifier << key; } } cached_settings.sync();