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 b9aaf8a commit 9b409a0Copy full SHA for 9b409a0
src/vs/editor/contrib/inlineCompletions/browser/structuredLogger.ts
@@ -79,7 +79,10 @@ export class StructuredLogger<T extends IRecordableLogEntry> extends Disposable
79
if (!commandId) {
80
return false;
81
}
82
- this._commandService.executeCommand(commandId, data);
+ try {
83
+ this._commandService.executeCommand(commandId, data).catch(() => { });
84
+ } catch (e) {
85
+ }
86
return true;
87
88
0 commit comments