(message: string, ...args: unknown[])
| 368 | } |
| 369 | |
| 370 | info(message: string, ...args: unknown[]): void { |
| 371 | this.log('info', message, this.processArgs(args)); |
| 372 | } |
| 373 | |
| 374 | warn(message: string, ...args: unknown[]): void { |
| 375 | this.log('warn', message, this.processArgs(args)); |
no test coverage detected