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

* Don't print out cache-value in log.

This commit is contained in:
Christian Muehlhaeuser 2013-06-10 10:38:06 +02:00
parent e70efa5fd0
commit 4a25055eda

View File

@ -125,7 +125,7 @@ Cache::putData( const QString& identifier, qint64 maxAge, const QString& key, co
addClient( identifier );
QSettings cached_settings( cacheDir, QSettings::IniFormat );
cached_settings.setValue( key, QVariant::fromValue( CacheData( QDateTime::currentMSecsSinceEpoch() + maxAge, value ) ) );
tDebug( LOGVERBOSE ) << Q_FUNC_INFO << "Storing from client" << identifier << maxAge << key << value;
tDebug( LOGVERBOSE ) << Q_FUNC_INFO << "Storing from client" << identifier << maxAge << key;
}