Infof writes a formatted log to the writer provided.
(wtr io.Writer, fmtStr string, args ...interface{})
| 57 | |
| 58 | // Infof writes a formatted log to the writer provided. |
| 59 | func Infof(wtr io.Writer, fmtStr string, args ...interface{}) { |
| 60 | Info(wtr, fmt.Sprintf(fmtStr, args...)) |
| 61 | } |
| 62 | |
| 63 | // Error writes a log to the writer provided. |
| 64 | func Error(wtr io.Writer, header string, lines ...string) { |
no test coverage detected