ErrorWrap logs an error message without additional fields. It annotates the given error's message with the given message
(err error, msg string)
| 189 | // ErrorWrap logs an error message without additional fields. It annotates the given error's |
| 190 | // message with the given message |
| 191 | func ErrorWrap(err error, msg string) { |
| 192 | newEntry(Fields{}).ErrorWrap(err, msg) |
| 193 | } |
no test coverage detected