From 4a25055eda8e5c1bd839f6dea1f055eaecfd46b3 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Mon, 10 Jun 2013 10:38:06 +0200 Subject: [PATCH] * Don't print out cache-value in log. --- src/libtomahawk/utils/TomahawkCache.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libtomahawk/utils/TomahawkCache.cpp b/src/libtomahawk/utils/TomahawkCache.cpp index 07a1f6707..d0c679121 100644 --- a/src/libtomahawk/utils/TomahawkCache.cpp +++ b/src/libtomahawk/utils/TomahawkCache.cpp @@ -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; }