infof prints a cyan info message to stderr.
(w io.Writer, format string, args ...any)
| 19 | |
| 20 | // infof prints a cyan info message to stderr. |
| 21 | func infof(w io.Writer, format string, args ...any) { |
| 22 | pretty.Fprintf(w, cliui.DefaultStyles.Keyword, outputPrefix+format+"\n", args...) |
| 23 | } |
| 24 | |
| 25 | // successf prints a green success message to stderr. |
| 26 | func successf(w io.Writer, format string, args ...any) { |
no outgoing calls
no test coverage detected