This library implements log
logging support into egui
applications.
There is also advanced search via regex.
fn main() {
// Should be called very early in the program.
egui_logger::init().unwrap();
}
Window::new("Log")::show(ctx, |ui| {
// draws the logger ui.
egui_logger::loger_ui(ui);
});
Feel free to open issues and pull requests.