warnf prints a yellow warning to stderr.
(w io.Writer, format string, args ...any)
| 14 | |
| 15 | // warnf prints a yellow warning to stderr. |
| 16 | func warnf(w io.Writer, format string, args ...any) { |
| 17 | pretty.Fprintf(w, cliui.DefaultStyles.Warn, outputPrefix+format+"\n", args...) |
| 18 | } |
| 19 | |
| 20 | // infof prints a cyan info message to stderr. |
| 21 | func infof(w io.Writer, format string, args ...any) { |
no outgoing calls
no test coverage detected