(message: string, ...args: unknown[])
| 20 | logForDebugging(format(message, ...args), { level: 'info' }) |
| 21 | } |
| 22 | warn(message: string, ...args: unknown[]): void { |
| 23 | logForDebugging(format(message, ...args), { level: 'warn' }) |
| 24 | } |
| 25 | error(message: string, ...args: unknown[]): void { |
| 26 | logForDebugging(format(message, ...args), { level: 'error' }) |
| 27 | } |
no test coverage detected