Info logs a message at level Info on the standard logger.
(args ...interface{})
| 274 | |
| 275 | // Info logs a message at level Info on the standard logger. |
| 276 | func Info(args ...interface{}) { |
| 277 | logrus.Info(args...) |
| 278 | } |
| 279 | |
| 280 | // Warn logs a message at level Warn on the standard logger. |
| 281 | func Warn(args ...interface{}) { |