Printf prints formatted output
(format string, args ...interface{})
| 123 | |
| 124 | // Printf prints formatted output |
| 125 | func (ui *SimpleBuildUI) Printf(format string, args ...interface{}) { |
| 126 | fmt.Printf(format, args...) |
| 127 | } |
| 128 | |
| 129 | // printMascot prints the mascot with status |
| 130 | func (ui *SimpleBuildUI) printMascot() { |
no outgoing calls