Skip to content

Commit b7ec69c

Browse files
committed
- Re-enable logToConsole behaviour, Paul's patch will give us the
desired behaviour.
1 parent 7ae4e50 commit b7ec69c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ui/SwiftOutputChannel.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export class SwiftOutputChannel implements vscode.OutputChannel {
2929
logStoreLinesSize: number = 250_000 // default to capturing 250k log lines
3030
) {
3131
this.name = name;
32-
// this.logToConsole = process.env["CI"] !== "1" && logToConsole;
32+
this.logToConsole = process.env["CI"] !== "1" && logToConsole;
3333
this.channel = vscode.window.createOutputChannel(name);
3434
this.logStore = new RollingLog(logStoreLinesSize);
3535
}

0 commit comments

Comments
 (0)