Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix error details not being logged in the tracing's span event
The span event "error" logs a field called "error" that is expected to contain the error's details, but is instead displaying as a boolean on Honeycomb. This is causing us to miss some important information when debuging an error span. This issue seems to be that a field called "error" is already definded as boolean. A solution would be to rename this field, in this specific span event, to something like "error.details" (we already have "error.id" and "error.kind").
- Loading branch information