feat(logger): Improve logging output and add --logfile support for persistent logs

This commit is contained in:
2025-05-15 17:50:25 +00:00
parent dc0f859fad
commit 56f0f0be16
8 changed files with 137 additions and 221 deletions

View File

@@ -102,7 +102,8 @@ export class TapParser {
this.activeTapTestResult.addLogLine(logLine);
}
if (this.logger) {
this.logger.tapOutput(logLine);
// This is console output from the test file, not TAP protocol
this.logger.testConsoleOutput(logLine);
}
}