Infoln logs a message at level Info on the standard logger.
(args ...interface{})
| 357 | |
| 358 | // Infoln logs a message at level Info on the standard logger. |
| 359 | func Infoln(args ...interface{}) { |
| 360 | logrus.Infoln(args...) |
| 361 | } |
| 362 | |
| 363 | // Warnln logs a message at level Warn on the standard logger. |
| 364 | func Warnln(args ...interface{}) { |