Warnf prints a warning message with optional format verbs
(msg string, v ...interface{})
| 74 | |
| 75 | // Warnf prints a warning message with optional format verbs |
| 76 | func Warnf(msg string, v ...interface{}) { |
| 77 | fmt.Fprintf(color.Output, "%s%s %s", indent, ColorRed.Sprint("•"), fmt.Sprintf(msg, v...)) |
| 78 | } |
| 79 | |
| 80 | // Error prints an error message |
| 81 | func Error(msg string) { |
no outgoing calls
no test coverage detected