Infof prints information with optional format verbs
(msg string, v ...interface{})
| 49 | |
| 50 | // Infof prints information with optional format verbs |
| 51 | func Infof(msg string, v ...interface{}) { |
| 52 | fmt.Fprintf(color.Output, "%s%s %s", indent, ColorBlue.Sprint("•"), fmt.Sprintf(msg, v...)) |
| 53 | } |
| 54 | |
| 55 | // Success prints a success message |
| 56 | func Success(msg string) { |
no outgoing calls
no test coverage detected