Errorf writes a formatted log to the writer provided.
(wtr io.Writer, fmtStr string, args ...interface{})
| 72 | |
| 73 | // Errorf writes a formatted log to the writer provided. |
| 74 | func Errorf(wtr io.Writer, fmtStr string, args ...interface{}) { |
| 75 | Error(wtr, fmt.Sprintf(fmtStr, args...)) |
| 76 | } |
no test coverage detected