Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 963 Bytes

README.md

File metadata and controls

27 lines (20 loc) · 963 Bytes

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()
        }));
}