* Logs an informational message to the console (unstyled). * * Automatically adapts to logger state if called within task, group, etc. * * @example * logger.info('Code PushUp CLI v0.80.2'); * * @param message Info text * @param options Additional options
(message: string, options?: LogOptions)
| 116 | * @param options Additional options |
| 117 | */ |
| 118 | info(message: string, options?: LogOptions): void { |
| 119 | this.#log(message, undefined, options); |
| 120 | } |
| 121 | |
| 122 | /** |
| 123 | * Logs a debug message to the console (gray), but **only if verbose** flag is set (see {@link isVerbose}). |
no test coverage detected