# 📊 Bevy Diagnostics Explorer – plugin and VSCode extension for visualizing diagnostics
[](https://github.com/zaycev/bevy-magic-light-2d/actions)
[](https://deps.rs/repo/github/zaycev/bevy-diagnostics-explorer)
[](https://discord.gg/J4vdsnadnh) (ping me if it expires)
How to use
Add dependency to Cargo.toml (TODO: publish to crates.io)
toml
[dependencies]
bevy_diagnostics_explorer = { git = "...", branch = "main" }
Add plugin to your app
rust
use bevy_diagnostics_explorer::DiagnosticsExplorerPlugin;
...
.add_plugin(DiagnosticsExplorerPlugin)
Disable default logging system
```rust
use bevy::log::LogPlugin;
...
.disable::()
```
Enable trace
feature for Bevy in Cargo.toml:
toml
[dependencies]
bevy = { version = "...", features = ["trace"] }
Run VSCode with Bevy Diagnostics Explorer extension installed (TODO: publish to marketplace)