Skip to content

Commit cc76abe

Browse files
committed
Fix edge case where logLevel got set back to info
1 parent 6287e1f commit cc76abe

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/vs/workbench/contrib/terminal/browser/terminalService.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,6 @@ export class TerminalService implements ITerminalService {
6161
private _terminalEditorActive: IContextKey<boolean>;
6262
private readonly _terminalShellTypeContextKey: IContextKey<string>;
6363

64-
private _escapeSequenceLoggingEnabled: boolean = false;
65-
6664
private _isShuttingDown: boolean = false;
6765
private _backgroundedTerminalInstances: ITerminalInstance[] = [];
6866
private _backgroundedTerminalDisposables: Map<number, IDisposable[]> = new Map();
@@ -183,7 +181,6 @@ export class TerminalService implements ITerminalService {
183181
this._forwardInstanceHostEvents(this._terminalEditorService);
184182
this._terminalGroupService.onDidChangeActiveGroup(this._onDidChangeActiveGroup.fire, this._onDidChangeActiveGroup);
185183
this._terminalInstanceService.onDidCreateInstance(instance => {
186-
instance.setEscapeSequenceLogging(this._escapeSequenceLoggingEnabled);
187184
this._initInstanceListeners(instance);
188185
this._onDidCreateInstance.fire(instance);
189186
});

0 commit comments

Comments
 (0)