(String text, FormatOptions... options)
| 288 | } |
| 289 | |
| 290 | private static final String formatText(String text, FormatOptions... options) { |
| 291 | if (!InternalFlags.enableColorizeErrorMessages()) { |
| 292 | return text; |
| 293 | } |
| 294 | return String.format( |
| 295 | "%s%s%s", |
| 296 | Arrays.stream(options).map(option -> option.ansiCode).collect(joining()), |
| 297 | text, |
| 298 | FormatOptions.RESET.ansiCode); |
| 299 | } |
| 300 | |
| 301 | public static final String bold(String text) { |
| 302 | return formatText(text, FormatOptions.BOLD); |