Skip to content

Commit c369806

Browse files
committed
fix(terminal): corrected the Output window debug for current state to reduce unnecessary output.
1 parent 1285217 commit c369806

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/integrations/terminal/TerminalProcess.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ export class TerminalProcess extends EventEmitter {
127127
if (typeof sidebarProvider.getState === "function") {
128128
this.debugLog(`Calling sidebarProvider.getState()`, true)
129129
const state = await sidebarProvider.getState()
130-
this.debugLog(`State returned: ${JSON.stringify(state)}`, true)
130+
this.debugLog(`State retrieved. Checking for terminalOutputLineLimit...`, true)
131131
if (state && typeof state.terminalOutputLineLimit === "number") {
132132
// Successfully retrieved the user's setting
133133
this.terminalOutputLineLimit = state.terminalOutputLineLimit

0 commit comments

Comments
 (0)