diff --git a/src/vs/workbench/api/node/extHostCommands.ts b/src/vs/workbench/api/node/extHostCommands.ts index e1607cd562ef969ed73ba6944f5a9ee3b8ce1db2..9eb67f348a47a93af681bd225d2a04c9885ed7ba 100644 --- a/src/vs/workbench/api/node/extHostCommands.ts +++ b/src/vs/workbench/api/node/extHostCommands.ts @@ -131,6 +131,8 @@ export class ExtHostCommands implements ExtHostCommandsShape { } $executeContributedCommand(id: string, ...args: any[]): Thenable { + this._logService.trace('ExtHostCommands#$executeContributedCommand', id); + if (!this._commands.has(id)) { return Promise.reject(new Error(`Contributed command '${id}' does not exist.`)); } else {