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
When the program panics the entire stack trace is returned. A more user friendly should be returned.
It should contain the failing stacktrace but also the following messages as in the example stacktrace below (taken from that of the stdlib pointer package):
Internal panic in while performing analysis: at the top
Error in analysis (please report this bug) at the bottom
For that, a recover should be added to the start of the program and catch all panics and wrap them with the added messages.
@shoniavika Feel free to take in the direction you feel like to. If you want to consult first, that's fine as well. You can reach me through the mail on my profile or here.
Enhancement
When the program panics the entire stack trace is returned. A more user friendly should be returned.
It should contain the failing stacktrace but also the following messages as in the example stacktrace below (taken from that of the stdlib pointer package):
Internal panic in while performing analysis:
at the topError in analysis (please report this bug)
at the bottomFor that, a
recover
should be added to the start of the program and catch all panics and wrap them with the added messages.The text was updated successfully, but these errors were encountered: