diff --git a/src/vs/workbench/api/node/extHostOutputService.ts b/src/vs/workbench/api/node/extHostOutputService.ts index 32384d010b5..0e8fe7ad5ab 100644 --- a/src/vs/workbench/api/node/extHostOutputService.ts +++ b/src/vs/workbench/api/node/extHostOutputService.ts @@ -187,6 +187,9 @@ export class ExtHostOutputService implements ExtHostOutputServiceShape { const extHostOutputChannel = createExtHostOutputChannel(name, this._outputDir, this._proxy); extHostOutputChannel.then(channel => channel._id.then(id => this._channels.set(id, channel))); return { + get name(): string { + return name; + }, append(value: string): void { extHostOutputChannel.then(channel => channel.append(value)); },