Debugf logs a message at level Debug on the standard logger.
(format string, args ...interface{})
| 307 | |
| 308 | // Debugf logs a message at level Debug on the standard logger. |
| 309 | func Debugf(format string, args ...interface{}) { |
| 310 | logrus.Debugf(format, args...) |
| 311 | } |
| 312 | |
| 313 | // Printf logs a message at level Info on the standard logger. |
| 314 | func Printf(format string, args ...interface{}) { |