Infof logs a message at level Info on the standard logger.
(format string, args ...interface{})
| 317 | |
| 318 | // Infof logs a message at level Info on the standard logger. |
| 319 | func Infof(format string, args ...interface{}) { |
| 320 | logrus.Infof(format, args...) |
| 321 | } |
| 322 | |
| 323 | // Warnf logs a message at level Warn on the standard logger. |
| 324 | func Warnf(format string, args ...interface{}) { |