ColoredPrintf does printf in a safe manner + newline currently are no colors supported.
(msg string, a ...interface{})
| 118 | // ColoredPrintf does printf in a safe manner + newline |
| 119 | // currently are no colors supported. |
| 120 | func (t *Output) ColoredPrintf(msg string, a ...interface{}) { |
| 121 | _, _ = t.WriteString(fmt.Sprintf(msg+"\n", a...)) |
| 122 | } |
| 123 | |
| 124 | // PrintfStdErr does printf but in safe manner to output |
| 125 | func (t *Output) PrintfStdErr(msg string, a ...interface{}) { |
nothing calls this directly
no test coverage detected