Error prints an error message
(msg string)
| 79 | |
| 80 | // Error prints an error message |
| 81 | func Error(msg string) { |
| 82 | fmt.Fprintf(color.Output, "%s%s %s", indent, ColorRed.Sprint("⨯"), msg) |
| 83 | } |
| 84 | |
| 85 | // Errorf prints an error message with optional format verbs |
| 86 | func Errorf(msg string, v ...interface{}) { |
no outgoing calls
no test coverage detected