mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 13:05:51 +03:00
Log the auth type being used for accounts
There have been hard to track down bugs related to the wrong auth type being used.
This commit is contained in:
parent
fad690be11
commit
ffbf34cb97
1 changed files with 3 additions and 0 deletions
|
@ -235,6 +235,9 @@ AccountPtr AccountManager::loadAccountHelper(QSettings& settings)
|
|||
} else {
|
||||
acc->setUrl(urlConfig.toUrl());
|
||||
}
|
||||
|
||||
qDebug() << "Account for" << acc->url() << "using auth type" << authType;
|
||||
|
||||
acc->_serverVersion = settings.value(QLatin1String(serverVersionC)).toString();
|
||||
|
||||
// We want to only restore settings for that auth type and the user value
|
||||
|
|
Loading…
Reference in a new issue