This commit is contained in:
Sandeep Somavarapu
2019-04-09 15:37:56 +02:00
committed by Karl Burtram
parent c738b26c04
commit 34d8d52e7a

View File

@@ -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 <vscode.OutputChannel>{
get name(): string {
return name;
},
append(value: string): void {
extHostOutputChannel.then(channel => channel.append(value));
},