Skip to content

v0.5.0

Choose a tag to compare

@RegenJacob RegenJacob released this 10 Jul 19:59
· 21 commits to main since this release
3cf3c45

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

Full Changelog: v0.4.4...v0.5.0