diff --git a/src/libtomahawk/TomahawkSettings.cpp b/src/libtomahawk/TomahawkSettings.cpp index 1c6c32512..e7f14bae2 100644 --- a/src/libtomahawk/TomahawkSettings.cpp +++ b/src/libtomahawk/TomahawkSettings.cpp @@ -622,7 +622,8 @@ TomahawkSettings::doUpgrade( int oldVersion, int newVersion ) tDebug() << "beginGroup" << QString( "accounts/%1" ).arg( account ); beginGroup( QString( "accounts/%1" ).arg( account ) ); const QVariantHash creds = value( "credentials" ).toHash(); - tDebug() << creds; + tDebug() << creds[ "username" ] + << ( creds[ "password" ].isNull() ? ", no password" : ", has password" ); if ( !creds.isEmpty() ) {