(message: string, ...args: unknown[])
| 285 | logForDebugging(format(message, ...args), { level: 'info' }) |
| 286 | } |
| 287 | warn(message: string, ...args: unknown[]): void { |
| 288 | logForDebugging(format(message, ...args), { level: 'warn' }) |
| 289 | } |
| 290 | error(message: string, ...args: unknown[]): void { |
| 291 | logForDebugging(format(message, ...args), { level: 'error' }) |
| 292 | } |
no test coverage detected