toast-logger-win 0.1.1

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 a small amount of output from UI-less applications on Windows.

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

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

For more details, please see docs.rs.