Print logs a message at level Info on the standard logger.
(args ...interface{})
| 269 | |
| 270 | // Print logs a message at level Info on the standard logger. |
| 271 | func Print(args ...interface{}) { |
| 272 | logrus.Print(args...) |
| 273 | } |
| 274 | |
| 275 | // Info logs a message at level Info on the standard logger. |
| 276 | func Info(args ...interface{}) { |