This library implements log
logging support into egui applications.
rust
fn main() {
// Should be called very early in the program.
egui_logger::init();
}
rust
Window::new("Log")::show(ctx, |ui| {
// draws the logger ui.
egui_logger::loger_ui(ui);
});