提交 01fcb405 编写于 作者: D Daniel Imms

Disable esc sequence logging when toggling off

Fixes #78399
上级 58d0639a
......@@ -1445,7 +1445,8 @@ export class TerminalInstance implements ITerminalInstance {
}
public toggleEscapeSequenceLogging(): void {
this._xterm.setOption('logLevel', 'debug');
const isDebug = this._xterm.getOption('logLevel') === 'debug';
this._xterm.setOption('logLevel', isDebug ? 'info' : 'debug');
}
public getInitialCwd(): Promise<string> {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册