# Vleue Sentry Reporter

[](https://docs.rs/vleue_sentry)
[](https://crates.io/crates/vleue_sentry)
[](https://github.com/bevyengine/bevy/blob/main/docs/plugins_guidelines.md#main-branch-tracking)
[](https://github.com/vleue/vleue_sentry/actions/workflows/ci.yml)
Error reporting for Bevy using [Sentry](https://sentry.io).
## Usage
Set the login subscriber:
```rust
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
|0.16|0.2|
|0.15|0.1|