Crate vleue_sentry

Crate vleue_sentry 

Source
Expand description

§Vleue Sentry Reporter

MIT/Apache 2.0 Doc Crate Bevy Tracking CI

Error reporting for Bevy using Sentry.

§Usage

Set the login subscriber:

use bevy::{prelude::*, log::LogPlugin};

use vleue_sentry::sentry_panic_reporter;

fn main() {
    App::new()
        .add_plugins(DefaultPlugins.set(LogPlugin {
            custom_layer: sentry_panic_reporter,
            ..default()
        }));
}

§Bevy Compatibility

Bevyvleue_sentry
0.160.2
0.150.1

Macros§

sentry_reporter
Reports panics and errors to Sentry logs will be added as breadcrumbs

Functions§

sentry_error_reporter
Reports panics and errors to Sentry logs will be added as breadcrumbs
sentry_panic_reporter
Reports panics to Sentry logs will be added as breadcrumbs