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".
builder
.max_level
.init_logger?;
info!;
For more details, please see docs.rs.