* Output a simple text line with a label.
(label: string, text?: string)
| 144 | * Output a simple text line with a label. |
| 145 | */ |
| 146 | output(label: string, text?: string): void { |
| 147 | if (this.disabled) return |
| 148 | const message = text ? `${label} ${text}\n` : `${label}\n` |
| 149 | this.stdout.write(message) |
| 150 | } |
| 151 | |
| 152 | /** |
| 153 | * Output an error message. |
no test coverage detected