LogInfo logs te info message in the proper format
(message string)
| 23 | |
| 24 | // LogInfo logs te info message in the proper format |
| 25 | func LogInfo(message string) { |
| 26 | logrus.Infoln(message) |
| 27 | } |
| 28 | |
| 29 | // LogDebug logs the debug message in proper format |
| 30 | func LogDebug(message string, extraFields map[string]interface{}) { |
no outgoing calls