toast-logger-win 0.4.0

Rust's `log` crate logger that sends logging output to the Windows Toast Notifications.
Documentation

CI-badge crate-badge docs-badge

toast-logger-win

ToastLogger is a log crate logger that sends logging output to the Windows Toast Notifications. This is handy when you want to present errors or a small amount of text to users from UI-less applications on Windows.

The following example shows a toast notification saying "Hello, world".

ToastLogger::builder()
    .max_level(log::LevelFilter::Error)
    .init()?;
log::error!("Hello, world");

Please see the API documentation at docs.rs for more details, and release notes for the change history.