Info is a short cut function that uses package initialized logger
(message string)
| 31 | |
| 32 | // Info is a short cut function that uses package initialized logger |
| 33 | func Info(message string) { |
| 34 | Log.Info(message) |
| 35 | return |
| 36 | } |
| 37 | func Infof(format string, a ...interface{}) { |
| 38 | Log.Info(fmt.Sprintf(format, a...)) |
| 39 | return |