add aka.ms link

pull/144136/head
Tyler Leonhardt 2022-02-28 16:33:46 -08:00
parent c254a23e72
commit 03f99f57c7
No known key found for this signature in database
GPG Key ID: 1BC2B6244363E77E
1 changed files with 3 additions and 1 deletions

View File

@ -164,7 +164,9 @@ export class CredentialsMainService extends Disposable implements ICredentialsMa
if (!this.isRunningOnServer) {
throw e;
}
this.logService.warn(`Switching to using in-memory credential store instead because Keytar failed to load: ${e.message}`);
this.logService.warn(
`Switching to using in-memory credential store instead because Keytar failed to load. Please see https://aka.ms/vscode-server-keyring for more info. Error details: ${e.message}`);
this._keytarCache = new InMemoryCredentialsProvider();
}
return this._keytarCache;