Crates.io | sentry-panic |
lib.rs | sentry-panic |
version | 0.35.0 |
source | src |
created_at | 2020-06-18 13:47:41.370178 |
updated_at | 2024-11-29 09:30:02.566052 |
description | Sentry integration for capturing panics. |
homepage | https://sentry.io/welcome/ |
repository | https://github.com/getsentry/sentry-rust |
max_upload_size | |
id | 255339 |
size | 18,794 |
The Sentry Panic handler integration.
The PanicIntegration
, which is enabled by default in sentry
, installs a
panic handler that will automatically dispatch all errors to Sentry that
are caused by a panic.
Additionally, panics are forwarded to the previously registered panic hook.
The panic integration can be configured with an additional extractor, which
might optionally create a sentry Event
out of a PanicInfo
.
let integration = sentry_panic::PanicIntegration::default().add_extractor(|info| None);
License: Apache-2.0