smoketest: more tracing information

This commit is contained in:
Joao Moreno
2018-06-08 17:53:46 +02:00
parent 5b28b6bbd4
commit c46caf0ac4

View File

@@ -131,6 +131,8 @@ export class ExtHostCommands implements ExtHostCommandsShape {
}
$executeContributedCommand<T>(id: string, ...args: any[]): Thenable<T> {
this._logService.trace('ExtHostCommands#$executeContributedCommand', id);
if (!this._commands.has(id)) {
return Promise.reject(new Error(`Contributed command '${id}' does not exist.`));
} else {