raven-go
raven-go copied to clipboard
Stack trace, wrong skip
In Client.CaptureError()
, NewStacktrace()
is called with skip=1
.
So, it properly skips the current function.
In in CaptureError()
(the "global" function), DefaultClient.CaptureError
is called, but the skip
value is the same.
Iit doesn't skip the call to CaptureError()
.