Infof logs formatted informational messages at the Info level.
(format string, args ...interface{})
| 27 | func Info(args ...interface{}) { logger.Info(args...) } |
| 28 | // Infof logs formatted informational messages at the Info level. |
| 29 | func Infof(format string, args ...interface{}) { logger.Infof(format, args...) } |
| 30 | // Infoln logs informational messages with a newline at the Info level. |
| 31 | func Infoln(args ...interface{}) { logger.Infoln(args...) } |
| 32 | // Warn logs warning messages at the Warn level. |
no outgoing calls