()
| 55 | } |
| 56 | |
| 57 | getExistingLogPath(): string | null { |
| 58 | if (this.logFile && fs.existsSync(this.logFile)) { |
| 59 | return this.logFile |
| 60 | } |
| 61 | return null |
| 62 | } |
| 63 | |
| 64 | private ensureLogDir(): void { |
| 65 | if (!fs.existsSync(this.logDir)) { |
no outgoing calls
no test coverage detected