()
| 11 | let initialized = false |
| 12 | |
| 13 | function ensureInit(): void { |
| 14 | if (initialized) return |
| 15 | initialized = true |
| 16 | initAppLogger(getLogsDir()) |
| 17 | } |
| 18 | |
| 19 | export const apiLogger = { |
| 20 | info: (msg: string, detail?: unknown) => { |
no test coverage detected