Преглед на файлове

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);

Зареждане…
Отказ
Запис