Detailf writes an indented detail line with no prefix symbol, used for supplementary information displayed beneath a success or info message.
(format string, a ...interface{})
| 76 | // Detailf writes an indented detail line with no prefix symbol, used for |
| 77 | // supplementary information displayed beneath a success or info message. |
| 78 | func (r *Renderer) Detailf(format string, a ...interface{}) { |
| 79 | fmt.Fprintf(r.MessageWriter, detailIndent+format+"\n", a...) |
| 80 | } |
| 81 | |
| 82 | func (r *Renderer) Warnf(format string, a ...interface{}) { |
| 83 | fmt.Fprint(r.MessageWriter, ansi.Yellow(" ▸ ")) |
no outgoing calls
no test coverage detected