egui_logger 0.1.0

log implementation for egui
Documentation

egui_logger

This library implements log logging support into egui applications.

Example

initialing

fn main() {
  // Should be called very early in the program.
  egui_logger::init(); 
}

inside your ui logic:

Window::new("Log")::show(ctx, |ui| {
  // draws the logger ui.
  egui_logger::loger_ui(ui);
});