| Crates.io | egui_logger |
| lib.rs | egui_logger |
| version | 0.8.0 |
| created_at | 2022-10-24 09:14:06.246868+00 |
| updated_at | 2025-07-21 20:01:52.247354+00 |
| description | log implementation for egui |
| homepage | |
| repository | https://github.com/RegenJacob/egui_logger |
| max_upload_size | |
| id | 695737 |
| size | 136,370 |
This library implements a UI for displaying log messages in egui applications.
There are also various ways to filter the logging output within the UI, such as a regex search through the messages.

puffin compatibility with the puffin crate.fn main() {
// Should be called very early in the program.
egui_logger::builder().init().unwrap();
}
fn ui(ctx: &egui::Context) {
egui::Window::new("Log").show(ctx, |ui| {
// draws the logger ui.
egui_logger::logger_ui().show(ui);
});
}
Feel free to open issues and pull requests.