(message: string, ...args: unknown[])
| 91 | } |
| 92 | |
| 93 | info(message: string, ...args: unknown[]): void { |
| 94 | this.logToConsole('info', '', message, ...args) |
| 95 | this.debug(message, args) |
| 96 | } |
| 97 | |
| 98 | infoDeveloper(message: string, ...args: unknown[]): void { |
| 99 | this.debug(message, ...args) |
no test coverage detected