Printf logs a message at level Info on the standard logger.
(format string, args ...interface{})
| 312 | |
| 313 | // Printf logs a message at level Info on the standard logger. |
| 314 | func Printf(format string, args ...interface{}) { |
| 315 | logrus.Printf(format, args...) |
| 316 | } |
| 317 | |
| 318 | // Infof logs a message at level Info on the standard logger. |
| 319 | func Infof(format string, args ...interface{}) { |