Info logs an info message without additional fields
(msg string)
| 178 | |
| 179 | // Info logs an info message without additional fields |
| 180 | func Info(msg string) { |
| 181 | newEntry(Fields{}).Info(msg) |
| 182 | } |
| 183 | |
| 184 | // Error logs an error message without additional fields |
| 185 | func Error(msg string) { |