(msg string, args ...any)
| 66 | } |
| 67 | |
| 68 | func (o *textOutput) printStdout(msg string, args ...any) { |
| 69 | fmt.Fprintf(o.stdout(), msg, args...) //nolint:errcheck |
| 70 | } |
| 71 | |
| 72 | func (o *textOutput) printStderr(msg string, args ...any) { |
| 73 | fmt.Fprintf(o.stderr(), msg, args...) //nolint:errcheck |
no test coverage detected