* Logs a debug message to the console (gray), but **only if verbose** flag is set (see isVerbose). * * Automatically adapts to logger state if called within task, group, etc. * * @example * logger.debug('Running ESLint version 9.16.0'); * * @param message
(message: string, options?: DebugLogOptions)
| 131 | * @param options Additional options |
| 132 | */ |
| 133 | debug(message: string, options?: DebugLogOptions): void { |
| 134 | if (this.#isVerbose || options?.force) { |
| 135 | this.#log(message, 'gray', options); |
| 136 | } |
| 137 | } |
| 138 | |
| 139 | /** |
| 140 | * Print a blank line to the console, used to separate logs for readability. |
no test coverage detected