mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-17 02:51:36 -05:00
Fix #71947
This commit is contained in:
committed by
Karl Burtram
parent
c738b26c04
commit
34d8d52e7a
@@ -187,6 +187,9 @@ export class ExtHostOutputService implements ExtHostOutputServiceShape {
|
|||||||
const extHostOutputChannel = createExtHostOutputChannel(name, this._outputDir, this._proxy);
|
const extHostOutputChannel = createExtHostOutputChannel(name, this._outputDir, this._proxy);
|
||||||
extHostOutputChannel.then(channel => channel._id.then(id => this._channels.set(id, channel)));
|
extHostOutputChannel.then(channel => channel._id.then(id => this._channels.set(id, channel)));
|
||||||
return <vscode.OutputChannel>{
|
return <vscode.OutputChannel>{
|
||||||
|
get name(): string {
|
||||||
|
return name;
|
||||||
|
},
|
||||||
append(value: string): void {
|
append(value: string): void {
|
||||||
extHostOutputChannel.then(channel => channel.append(value));
|
extHostOutputChannel.then(channel => channel.append(value));
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user