8 releases
new 0.1.20241115 | Nov 15, 2024 |
---|---|
0.1.20241114 |
|
0.1.20241024 | Oct 24, 2024 |
#480 in Debugging
842 downloads per month
17KB
469 lines
use async_logger::{error, info, LevelFilter};
#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
initialize_logging().await;
info!("starting...");
Ok(())
}
async fn initialize_logging() {
match async_logger::builder()
.max_log_level(LevelFilter::Info)
.bounded(100_000, false)
.try_init()
{
Ok(_) => {}
Err(e) => error!("{e}"),
}
}
Dependencies
~1.7–2.3MB
~45K SLoC