diff --git a/extensions/azurecore/src/account-provider/azureAccountProvider.ts b/extensions/azurecore/src/account-provider/azureAccountProvider.ts index 0cd08d5a26..9586dd7086 100644 --- a/extensions/azurecore/src/account-provider/azureAccountProvider.ts +++ b/extensions/azurecore/src/account-provider/azureAccountProvider.ts @@ -88,6 +88,7 @@ export class AzureAccountProvider implements azdata.AccountProvider, vscode.Disp private async _initialize(storedAccounts: azdata.Account[]): Promise { const accounts: azdata.Account[] = []; + console.log(`Initializing stored accounts ${JSON.stringify(accounts)}`); for (let account of storedAccounts) { const azureAuth = this.getAuthMethod(account); if (!azureAuth) { diff --git a/src/sql/platform/accounts/common/accountStore.ts b/src/sql/platform/accounts/common/accountStore.ts index db927585ef..080ef6b819 100644 --- a/src/sql/platform/accounts/common/accountStore.ts +++ b/src/sql/platform/accounts/common/accountStore.ts @@ -206,7 +206,7 @@ export default class AccountStore implements IAccountStore { if (!accounts) { accounts = []; } - + this.logService.debug(`Read accounts from memento ${JSON.stringify(accounts)}`); // Make a deep copy of the account list to ensure that the memento list isn't obliterated accounts = deepClone(accounts);