mirror of
https://github.com/microsoft/vscode.git
synced 2026-07-05 09:17:11 -05:00
register output channel
This commit is contained in:
@@ -15,7 +15,7 @@ export class VsCodeOutputLogger extends Disposable implements ILogger {
|
||||
private _outputChannelValue?: vscode.LogOutputChannel;
|
||||
|
||||
private get _outputChannel() {
|
||||
this._outputChannelValue ??= vscode.window.createOutputChannel('Markdown', { log: true });
|
||||
this._outputChannelValue ??= this._register(vscode.window.createOutputChannel('Markdown', { log: true }));
|
||||
return this._outputChannelValue;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user