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