Преглед изворни кода

Excludes logging certain core commands

main
Eric Amodio пре 1 година
родитељ
комит
0ca0a0fd16
1 измењених фајлова са 6 додато и 1 уклоњено
  1. +6
    -1
      src/system/command.ts

+ 6
- 1
src/system/command.ts Прегледај датотеку

@ -93,7 +93,12 @@ export function executeCoreCommand(
command: CoreCommands,
...args: T
): Thenable<U> {
if (command != 'setContext' && command !== 'vscode.executeDocumentSymbolProvider') {
if (
command != 'setContext' &&
command !== 'vscode.executeDocumentSymbolProvider' &&
command !== 'vscode.diff' &&
command !== 'vscode.open'
) {
Container.instance.telemetry.sendEvent('command/core', { command: command });
}
return commands.executeCommand<U>(command, ...args);

Loading…
Откажи
Сачувај