Skip to content

Commit

Permalink
include this.logService.error in a place. ref #147760
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerLeonhardt committed Apr 23, 2022
1 parent 6c71352 commit c22cb87
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/vs/workbench/api/browser/mainThreadSecretState.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ export class MainThreadSecretState extends Disposable implements MainThreadSecre
if (value.extensionId === extensionId) {
return value.content;
}
} catch (_) {
} catch (e) {
this.logService.error(e);
throw new Error('Cannot get password');
}
}
Expand Down

0 comments on commit c22cb87

Please sign in to comment.