Warn writes a formatted log to the writer provided.
(wtr io.Writer, fmtStr string, args ...interface{})
| 44 | |
| 45 | // Warn writes a formatted log to the writer provided. |
| 46 | func Warnf(wtr io.Writer, fmtStr string, args ...interface{}) { |
| 47 | Warn(wtr, fmt.Sprintf(fmtStr, args...)) |
| 48 | } |
| 49 | |
| 50 | // Info writes a log to the writer provided. |
| 51 | func Info(wtr io.Writer, header string, lines ...string) { |
no test coverage detected