Module sentry::integrations::panic

source ·
Expand description

Panic handler support.

Feature: with_panic (enabled by default)

A panic handler can be installed that will automatically dispatch all errors to Sentry that are caused by a panic.

Configuration

use sentry::integrations::panic::register_panic_handler;
register_panic_handler();

Additionally panics are forwarded to the previously registered panic hook.

Functions

Creates an event from the given panic info.
Extract the message of a panic.
A panic handler that sends to Sentry.
Registes the panic handler.