1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-07-31 11:20:22 +02:00

Remove debug spam.

This commit is contained in:
Teo Mrnjavac
2013-05-29 10:58:22 +02:00
parent 991c206d1e
commit f9b82b6815

View File

@@ -623,7 +623,6 @@ TomahawkSettings::doUpgrade( int oldVersion, int newVersion )
beginGroup( QString( "accounts/%1" ).arg( account ) ); beginGroup( QString( "accounts/%1" ).arg( account ) );
const QVariantHash creds = value( "credentials" ).toHash(); const QVariantHash creds = value( "credentials" ).toHash();
tDebug() << "creds:" << creds;
if ( !creds.isEmpty() ) if ( !creds.isEmpty() )
{ {
QKeychain::WritePasswordJob* j = new QKeychain::WritePasswordJob( QLatin1String( "Tomahawk" ), this ); QKeychain::WritePasswordJob* j = new QKeychain::WritePasswordJob( QLatin1String( "Tomahawk" ), this );
@@ -636,8 +635,6 @@ TomahawkSettings::doUpgrade( int oldVersion, int newVersion )
j->setBinaryData( data ); j->setBinaryData( data );
j->start(); j->start();
qDebug() << "Migrating account credentials for account:" << account;
} }
remove( "credentials" ); remove( "credentials" );