(logPath: string)
| 259 | * Clear the CLI debug log file |
| 260 | */ |
| 261 | export function clearCliDebugLog(logPath: string): void { |
| 262 | try { |
| 263 | fs.writeFileSync(logPath, '') |
| 264 | } catch { |
| 265 | // Ignore errors |
| 266 | } |
| 267 | } |
no outgoing calls
no test coverage detected