(logPath: string, line: string)
| 211 | } |
| 212 | |
| 213 | function appendDiagnosticLine(logPath: string, line: string): void { |
| 214 | fs.mkdirSync(path.dirname(logPath), { recursive: true }); |
| 215 | fs.appendFileSync(logPath, line, 'utf8'); |
| 216 | } |
no outgoing calls
no test coverage detected