diff options
author | Damien Caliste <[email protected]> | 2025-06-25 16:13:18 +0200 |
---|---|---|
committer | Damien Caliste <[email protected]> | 2025-07-04 18:35:22 +0200 |
commit | 6cb917dcef5087503cdb5e610fbf8d480e7fc937 (patch) | |
tree | 676db095a02acdfd0a68d2d02778302e9bccece0 /src/plugins/credentials | |
parent | f73381b4cdafb04ac240e4141754578f2e08080c (diff) |
Also prefix the send and receive messages with the
account number. It helps when several accounts are
reporting at the same time to follow the actions of
each account.
Change-Id: Ie48bea49219cf451a62a2780f2ba122afb67f5d4
Reviewed-by: Pekka Vuorela <[email protected]>
Diffstat (limited to 'src/plugins/credentials')
-rw-r--r-- | src/plugins/credentials/sso/ssomanager.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/credentials/sso/ssomanager.cpp b/src/plugins/credentials/sso/ssomanager.cpp index 8ea886b7..8f76a1dc 100644 --- a/src/plugins/credentials/sso/ssomanager.cpp +++ b/src/plugins/credentials/sso/ssomanager.cpp @@ -135,6 +135,7 @@ bool SSOManager::start(const QString &method, const QString &mechanism, sessionData = oauth2Data; } if (m_session) { + qCDebug(lcMessaging) << "SSO: starting credentials retrieval."; m_status = Fetching; emit statusChanged(); sessionData.setUiPolicy(SignOn::NoUserInteractionPolicy); @@ -208,6 +209,7 @@ void SSOManager::onError(const SignOn::Error &code) || code.type() == SignOn::Error:: UserInteraction) { invalidate(); } + qCDebug(lcMessaging) << "SSO: got error response," << m_errorMessage; emit statusChanged(); } |