async-std/examples/logging.rs

16 lines
303 B
Rust
Raw Permalink Normal View History

2019-08-08 12:44:48 +00:00
//! Prints the runtime's execution log on the standard output.
use async_std::task;
fn main() {
femme::start(log::LevelFilter::Trace).unwrap();
task::block_on(async {
let handle = task::spawn(async {
log::info!("Hello world!");
});
handle.await;
})
}