You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 30, 2023. It is now read-only.
In go, errors don't have a stacktrace.
Errors reported with Sentry/raven-go show the stacktrace of the Capture call, instead of where the errors come from.
The github.com/pkg/errors package adds stack trace to Go errors. (you must wrap all errors with errors.Wrap)
I don't think you currently support the stacktrace format of this package.
Do you plan to support it?
In go, errors don't have a stacktrace.
Errors reported with Sentry/raven-go show the stacktrace of the
Capturecall, instead of where the errors come from.The
github.com/pkg/errorspackage adds stack trace to Go errors. (you must wrap all errors witherrors.Wrap)I don't think you currently support the stacktrace format of this package.
Do you plan to support it?