Closed hwittenborn closed 1 year ago
I managed to solve this in my application by disabling the Sentry panic handler, and then getting the backtrace with std::backtrace::Backtrace
in my code's panic_handler
, and then just calling PanicIntegration::new().event_from_panic_info(panic_info)
manually and uploading the result.
I should be good with this issue now.
In my application, I'd like to do the following:
sentry::init
The way I have this (sort of) set up right now is to use
before_send
to invoke the GUI:But as shown in that spot in the example, I'm not quite sure how I'd get the recorded stack trace through there.
Is there any way I'd be able to do that?