Info logs a message at level Info on the standard logger.
(args ...interface{})
| 106 | |
| 107 | // Info logs a message at level Info on the standard logger. |
| 108 | func Info(args ...interface{}) { |
| 109 | std.Info(args...) |
| 110 | } |
| 111 | |
| 112 | // Warn logs a message at level Warn on the standard logger. |
| 113 | func Warn(args ...interface{}) { |