From 54e2124f1c2c581d2def2c168260f77b031eec5b Mon Sep 17 00:00:00 2001 From: Sandeep Somavarapu Date: Tue, 9 Apr 2019 15:37:56 +0200 Subject: [PATCH] Fix #71947 --- src/vs/workbench/api/node/extHostOutputService.ts | 3 +++ 1 file changed, 3 insertions(+) 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)); },