errors icon indicating copy to clipboard operation
errors copied to clipboard

Ignore Callstack above printing location

Open e-nikolov opened this issue 7 years ago • 1 comments

Is it possible when printing an error to only print the Callstack that is generated from this position onward, but ignore the Callstack that happened prior to the method that prints the error?

For instance if I am using a webserver, such as negroni, it includes a lot of function calls which happen before reaching my code. These calls are still included in the stack trace, and clutter it, but I am not particularly interested in them.

Is there a way to ignore them?

If there isn't at present, maybe something can be done to match the runtime.Callers at the printing location with the stack trace inside the error, and ignore the matching part?

e-nikolov avatar Mar 25 '17 16:03 e-nikolov

In a word yes, but also no.

errors from this package support a StackTrace() []Frame interface which you can use to get the various pcs of the stack trace. You can filter it yourself

https://godoc.org/github.com/pkg/errors#example-package--StackTrace

On Sun, Mar 26, 2017 at 3:59 AM, e-nikolov [email protected] wrote:

Is it possible when printing an error to only print the Callstack that is generated from this position onward, but ignore the Callstack that happened prior to the method that prints the error?

For instance if I am using a webserver, such as negroni, it includes a lot of function calls which happen before reaching my code. These calls are still included in the stack trace, and clutter it, but I am not particularly interested in them.

Is there a way to ignore them?

If there isn't at present, maybe something can be done to match the runtime.Callers at the printing location with the stack trace inside the error, and ignore the matching part?

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/pkg/errors/issues/111, or mute the thread https://github.com/notifications/unsubscribe-auth/AAAcAzxL-p49NBbeeD4L1jhGh-9aAV7Bks5rpUgLgaJpZM4MpI3s .

davecheney avatar Mar 29 '17 03:03 davecheney