Infof prints info message according to a format
(format string, args ...interface{})
| 60 | |
| 61 | // Infof prints info message according to a format |
| 62 | func Infof(format string, args ...interface{}) { |
| 63 | s := fmt.Sprintf(format, args...) |
| 64 | infoLogger.Output(outputCallDepth, mask(s)) // nolint |
| 65 | } |
| 66 | |
| 67 | // Errorf prints warning message according to a format |
| 68 | func Errorf(format string, args ...interface{}) { |
no test coverage detected