toast-logger-win 0.2.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

Rust's log crate logger that sends logging output to the Windows Toast Notifications. This is handy when you want to output a small amount of text from UI-less applications on Windows.

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

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

Please see the API documents at docs.rs for more details.