1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-14 01:54:07 +02:00

* Style fixes.

This commit is contained in:
Christian Muehlhaeuser
2014-09-11 17:08:56 +02:00
parent fcf7ddd169
commit aeaac33e44
2 changed files with 2 additions and 2 deletions

View File

@@ -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...";

View File

@@ -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();