(message: string, ...args: unknown[])
| 141 | } |
| 142 | |
| 143 | warn(message: string, ...args: unknown[]): void { |
| 144 | this.logToConsole('warn', '', message, ...args) |
| 145 | this.debug(`[WARN] ${message}`, ...args) |
| 146 | } |
| 147 | |
| 148 | getLogPath(): string { |
| 149 | return this.logFilePath |
no test coverage detected