(logsDir: string)
| 111 | |
| 112 | /** Initialize the singleton app logger. Call once per runtime at startup. */ |
| 113 | export function initAppLogger(logsDir: string): void { |
| 114 | instance = new AppLogger(logsDir) |
| 115 | } |
| 116 | |
| 117 | /** |
| 118 | * The shared logger. Safe to call before init: logs are dropped silently until |
no outgoing calls
no test coverage detected