basiclog
This is a simple Rust logging boilerplate for my needs.
Importing:
use ;
Just initialize it:
init;
And use:
info!;
Output:
2021/04/28 21:57:04.331 DEB | This is a test!
This is a simple Rust logging boilerplate for my needs.
Importing:
use basiclog::{info};
Just initialize it:
basiclog::init();
And use:
info!("This is a test!");
Output:
2021/04/28 21:57:04.331 DEB | This is a test!