We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ae4e50 commit b7ec69cCopy full SHA for b7ec69c
src/ui/SwiftOutputChannel.ts
@@ -29,7 +29,7 @@ export class SwiftOutputChannel implements vscode.OutputChannel {
29
logStoreLinesSize: number = 250_000 // default to capturing 250k log lines
30
) {
31
this.name = name;
32
- // this.logToConsole = process.env["CI"] !== "1" && logToConsole;
+ this.logToConsole = process.env["CI"] !== "1" && logToConsole;
33
this.channel = vscode.window.createOutputChannel(name);
34
this.logStore = new RollingLog(logStoreLinesSize);
35
}
0 commit comments