* Logs a warning to the console (yellow). * * Automatically adapts to logger state if called within task, group, etc. * * @example * logger.warn('Skipping invalid audits'); * * @param message Warning text * @param options Additional options
(message: string, options?: LogOptions)
| 101 | * @param options Additional options |
| 102 | */ |
| 103 | warn(message: string, options?: LogOptions): void { |
| 104 | this.#log(message, 'yellow', options); |
| 105 | } |
| 106 | |
| 107 | /** |
| 108 | * Logs an informational message to the console (unstyled). |
no test coverage detected