(message: string, ...args: unknown[])
| 131 | } |
| 132 | |
| 133 | infoDeveloper(message: string, ...args: unknown[]): void { |
| 134 | // Always write to debug |
| 135 | this.debug(message, ...args) |
| 136 | |
| 137 | // Write to info if DEBUG mode is on |
| 138 | if (process.env.DEBUG) { |
| 139 | this.logToConsole('info', '[DEV]', message, ...args) |
| 140 | } |
| 141 | } |
| 142 | |
| 143 | warn(message: string, ...args: unknown[]): void { |
| 144 | this.logToConsole('warn', '', message, ...args) |
no test coverage detected