(message: string, ...args: unknown[])
| 17 | logForDebugging(format(message, ...args), { level: 'debug' }) |
| 18 | } |
| 19 | info(message: string, ...args: unknown[]): void { |
| 20 | logForDebugging(format(message, ...args), { level: 'info' }) |
| 21 | } |
| 22 | warn(message: string, ...args: unknown[]): void { |
| 23 | logForDebugging(format(message, ...args), { level: 'warn' }) |
| 24 | } |
nothing calls this directly
no test coverage detected