mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 03:29:00 +01:00
output: surface label for extension output channels
This commit is contained in:
@@ -234,8 +234,8 @@ export class ExtHostAPIImplementation {
|
||||
setStatusBarMessage(text: string, timeoutOrThenable?: number | Thenable<any>): vscode.Disposable {
|
||||
return extHostStatusBar.setStatusBarMessage(text, timeoutOrThenable);
|
||||
},
|
||||
createOutputChannel(name: string): vscode.OutputChannel {
|
||||
return extHostOutputService.createOutputChannel(name);
|
||||
createOutputChannel(name: string, label?: string): vscode.OutputChannel {
|
||||
return extHostOutputService.createOutputChannel(name, label);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user