(message: string, ...args: unknown[])
| 96 | } |
| 97 | |
| 98 | infoDeveloper(message: string, ...args: unknown[]): void { |
| 99 | this.debug(message, ...args) |
| 100 | if (process.env.DEBUG) { |
| 101 | this.logToConsole('info', '[DEV]', message, ...args) |
| 102 | } |
| 103 | } |
| 104 | |
| 105 | warn(message: string, ...args: unknown[]): void { |
| 106 | this.logToConsole('warn', '', message, ...args) |
no test coverage detected