* Print a blank line to the console, used to separate logs for readability. * * Automatically adapts to logger state if called within task, group, etc. * * @example * logger.newline();
()
| 145 | * logger.newline(); |
| 146 | */ |
| 147 | newline(): void { |
| 148 | this.#log(''); |
| 149 | } |
| 150 | |
| 151 | /** |
| 152 | * Is verbose flag set? |
no test coverage detected