Printf does printf in a safe manner
(msg string, a ...interface{})
| 107 | |
| 108 | // Printf does printf in a safe manner |
| 109 | func (t *Output) Printf(msg string, a ...interface{}) { |
| 110 | _, _ = t.WriteString(fmt.Sprintf(msg, a...)) |
| 111 | } |
| 112 | |
| 113 | // Print does printf in a safe manner |
| 114 | func (t *Output) Print(msg string) { |
nothing calls this directly
no test coverage detected