(toolName: string)
| 31 | } |
| 32 | |
| 33 | function generateLogFileName(toolName: string): string { |
| 34 | return `${toolName}_${formatLogTimestamp()}_pid${process.pid}_${shortRandomSuffix()}.log`; |
| 35 | } |
| 36 | |
| 37 | export interface LogCapture { |
| 38 | write(chunk: string): void; |
no test coverage detected