Info prints information
(msg string)
| 44 | |
| 45 | // Info prints information |
| 46 | func Info(msg string) { |
| 47 | fmt.Fprintf(color.Output, "%s%s %s", indent, ColorBlue.Sprint("•"), msg) |
| 48 | } |
| 49 | |
| 50 | // Infof prints information with optional format verbs |
| 51 | func Infof(msg string, v ...interface{}) { |
no outgoing calls
no test coverage detected