https://github.com/vleue/vleue_sentry
Error reporting with Sentry for Bevy
https://github.com/vleue/vleue_sentry
bevy bevy-plugin error-reporting rust sentry
Last synced: 4 months ago
JSON representation
Error reporting with Sentry for Bevy
- Host: GitHub
- URL: https://github.com/vleue/vleue_sentry
- Owner: vleue
- Created: 2024-04-26T00:16:55.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-10-08T22:10:17.000Z (9 months ago)
- Last Synced: 2025-11-12T19:25:29.139Z (8 months ago)
- Topics: bevy, bevy-plugin, error-reporting, rust, sentry
- Language: Rust
- Homepage:
- Size: 23.4 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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
|Bevy|vleue_sentry|
|---|---|
|0.16|0.2|
|0.15|0.1|