Expand description
§Vleue Sentry Reporter
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
| Bevy | vleue_sentry |
|---|---|
| 0.16 | 0.2 |
| 0.15 | 0.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