Skip to content

Commit

Permalink
- Re-enable logToConsole behaviour, Paul's patch will give us the
Browse files Browse the repository at this point in the history
desired behaviour.
  • Loading branch information
michael-weng committed Nov 6, 2024
1 parent 7ae4e50 commit b7ec69c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/SwiftOutputChannel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export class SwiftOutputChannel implements vscode.OutputChannel {
logStoreLinesSize: number = 250_000 // default to capturing 250k log lines
) {
this.name = name;
// this.logToConsole = process.env["CI"] !== "1" && logToConsole;
this.logToConsole = process.env["CI"] !== "1" && logToConsole;
this.channel = vscode.window.createOutputChannel(name);
this.logStore = new RollingLog(logStoreLinesSize);
}
Expand Down

0 comments on commit b7ec69c

Please sign in to comment.