瀏覽代碼

Splits core commands into a separate bucket

main
Eric Amodio 2 年之前
父節點
當前提交
728f193d08
共有 1 個檔案被更改,包括 2 行新增2 行删除
  1. +2
    -2
      src/system/command.ts

+ 2
- 2
src/system/command.ts 查看文件

@ -66,7 +66,7 @@ export function executeCoreCommand(
command: CoreCommands,
...args: T
): Thenable<U> {
Container.instance.telemetry.sendEvent('command', { command: command });
Container.instance.telemetry.sendEvent('command/core', { command: command });
return commands.executeCommand<U>(command, ...args);
}
@ -80,7 +80,7 @@ export function executeCoreGitCommand(
command: CoreGitCommands,
...args: T
): Thenable<U> {
Container.instance.telemetry.sendEvent('command', { command: command });
Container.instance.telemetry.sendEvent('command/core', { command: command });
return commands.executeCommand<U>(command, ...args);
}

Loading…
取消
儲存