Print a compact summary line to stdout (always visible).
(self, msg: str)
| 94 | return self._log_file |
| 95 | |
| 96 | def emit(self, msg: str) -> None: |
| 97 | """Print a compact summary line to stdout (always visible).""" |
| 98 | print(msg) |
| 99 | |
| 100 | def emit_log_path(self) -> None: |
| 101 | """Print log file path so agents know where to look on failure.""" |
no test coverage detected