(line: string)
| 61 | ]; |
| 62 | |
| 63 | function isErrorLogLine(line: string): boolean { |
| 64 | return ERROR_LOG_PATTERNS.some((rx) => rx.test(line)); |
| 65 | } |
| 66 | |
| 67 | /** |
| 68 | * Extract the most-recent error-shaped log lines from a sanitized log. |
no outgoing calls
no test coverage detected