1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-01 03:40:16 +02:00

Better debug output for QtKeychain jobs

This commit is contained in:
Teo Mrnjavac
2013-08-03 17:08:31 +02:00
parent 58baac0a6d
commit b472db0191

View File

@@ -213,7 +213,8 @@ CredentialsManager::keychainJobFinished( QKeychain::Job* j )
{ {
if ( readJob->error() == QKeychain::NoError ) if ( readJob->error() == QKeychain::NoError )
{ {
tDebug() << "QtKeychain readJob for" << readJob->key() << "finished without errors"; tDebug() << "QtKeychain readJob for" << readJob->service() << "/"
<< readJob->key() << "finished without errors";
QVariant creds; QVariant creds;
if ( !readJob->textData().isEmpty() ) if ( !readJob->textData().isEmpty() )
@@ -232,7 +233,7 @@ CredentialsManager::keychainJobFinished( QKeychain::Job* j )
} }
else else
{ {
tDebug() << "QtKeychain readJob for" << readJob->key() << "finished with error:" << j->error() << j->errorString(); tDebug() << "QtKeychain readJob for" << readJob->service() << "/" << readJob->key() << "finished with error:" << j->error() << j->errorString();
} }
m_readJobs[ readJob->service() ].removeOne( readJob ); m_readJobs[ readJob->service() ].removeOne( readJob );
@@ -244,12 +245,12 @@ CredentialsManager::keychainJobFinished( QKeychain::Job* j )
} }
else if ( QKeychain::WritePasswordJob* writeJob = qobject_cast< QKeychain::WritePasswordJob* >( j ) ) else if ( QKeychain::WritePasswordJob* writeJob = qobject_cast< QKeychain::WritePasswordJob* >( j ) )
{ {
tLog() << Q_FUNC_INFO << "QtKeychain writeJob for" << writeJob->key() << "finished" tLog() << Q_FUNC_INFO << "QtKeychain writeJob for" << writeJob->service() << "/" << writeJob->key() << "finished"
<< ( ( j->error() == QKeychain::NoError ) ? "without error" : j->errorString() ); << ( ( j->error() == QKeychain::NoError ) ? "without error" : j->errorString() );
} }
else if ( QKeychain::DeletePasswordJob* deleteJob = qobject_cast< QKeychain::DeletePasswordJob* >( j ) ) else if ( QKeychain::DeletePasswordJob* deleteJob = qobject_cast< QKeychain::DeletePasswordJob* >( j ) )
{ {
tLog() << Q_FUNC_INFO << "QtKeychain deleteJob for" << deleteJob->key() << "finished" tLog() << Q_FUNC_INFO << "QtKeychain deleteJob for" << deleteJob->service() << "/" << deleteJob->key() << "finished"
<< ( ( j->error() == QKeychain::NoError ) ? "without error" : j->errorString() ); << ( ( j->error() == QKeychain::NoError ) ? "without error" : j->errorString() );
} }
j->deleteLater(); j->deleteLater();