Error logs an error message without additional fields
(msg string)
| 183 | |
| 184 | // Error logs an error message without additional fields |
| 185 | func Error(msg string) { |
| 186 | newEntry(Fields{}).Error(msg) |
| 187 | } |
| 188 | |
| 189 | // ErrorWrap logs an error message without additional fields. It annotates the given error's |
| 190 | // message with the given message |