v0.5.0
This update changes the API a bit:
UI:
// before
egui_logger::logger_ui(ui);
// now
egui_logger::logger_ui().show();This is because LoggerUI provides new options.
And will (hopefully) provide more in the future.
Currently only has support to toggle regex support
Log
// before
egui_logger::init().unwrap();
// now
egui_logger::builder().init().unwrap();Like the above this will add some more features in the future.
Currently this only adds the features to set the max log level
What's Changed
- New API by @RegenJacob in #19
Full Changelog: v0.4.4...v0.5.0