(str string, i ...interface{})
| 130 | } |
| 131 | |
| 132 | func (p *Printer) PrintfWarn(str string, i ...interface{}) { |
| 133 | p.Print(ColorYellowBold.Sprintf(str, i...)) |
| 134 | } |
| 135 | |
| 136 | func (p *Printer) PrintfError(str string, i ...interface{}) { |
| 137 | p.Print(ColorRedBold.Sprintf(str, i...)) |
no test coverage detected