(message: string, ...args: unknown[])
| 282 | logForDebugging(format(message, ...args), { level: 'debug' }) |
| 283 | } |
| 284 | info(message: string, ...args: unknown[]): void { |
| 285 | logForDebugging(format(message, ...args), { level: 'info' }) |
| 286 | } |
| 287 | warn(message: string, ...args: unknown[]): void { |
| 288 | logForDebugging(format(message, ...args), { level: 'warn' }) |
| 289 | } |
no test coverage detected