(message string, indent bool)
| 335 | } |
| 336 | |
| 337 | func printSuccessText(message string, indent bool) { |
| 338 | if isAutoDiscover || isSilent { |
| 339 | log(message) |
| 340 | } else { |
| 341 | color := color.New(color.FgHiGreen) |
| 342 | |
| 343 | if indent { |
| 344 | color.Println(fmt.Sprintf(" |--► %s", message)) |
| 345 | } else { |
| 346 | color.Println(fmt.Sprintf("----► %s", message)) |
| 347 | } |
| 348 | } |
| 349 | } |
| 350 | |
| 351 | func printDoneText(message string, indent bool) { |
| 352 | if isAutoDiscover || isSilent { |
no test coverage detected