(w io.Writer, format string, a ...any)
| 54 | } |
| 55 | |
| 56 | func Ferrorf(w io.Writer, format string, a ...any) { |
| 57 | error.Fprint(w, "Error: ") |
| 58 | fmt.Fprintf(w, format, a...) |
| 59 | } |
| 60 | |
| 61 | // Hidable messages allow the use of context to disable a message. Messages can be hidden |
| 62 | // by their format string. |
no outgoing calls
no test coverage detected