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