We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1130ceb commit 99a7427Copy full SHA for 99a7427
packages/common/src/util/Disposer.ts
@@ -22,8 +22,10 @@ export class Disposer implements Disposable {
22
try {
23
dispose();
24
} catch (e) {
25
- // do nothing; some of the VSCode disposables misbehave, and we don't
26
- // want that to prevent us from disposing the rest of the disposables
+ // just log, but don't throw; some of the VSCode disposables misbehave,
+ // and we don't want that to prevent us from disposing the rest of the
27
+ // disposables
28
+ console.error(e);
29
}
30
});
31
0 commit comments