Print does printf in a safe manner
(msg string)
| 112 | |
| 113 | // Print does printf in a safe manner |
| 114 | func (t *Output) Print(msg string) { |
| 115 | _, _ = t.WriteString(msg) |
| 116 | } |
| 117 | |
| 118 | // ColoredPrintf does printf in a safe manner + newline |
| 119 | // currently are no colors supported. |
no test coverage detected