(message: string, ...args: unknown[])
| 103 | } |
| 104 | |
| 105 | warn(message: string, ...args: unknown[]): void { |
| 106 | this.logToConsole('warn', '', message, ...args) |
| 107 | this.debug(`[WARN] ${message}`, ...args) |
| 108 | } |
| 109 | |
| 110 | getLogPath(): string { |
| 111 | return this.logFilePath |
no test coverage detected