A simple, beautiful, and easy-to-use logging library for Rust.
- Beautiful console printing
- There are no tedious initialization steps
- Lightweight & Easy to use
- Support thread log identification
- Support log redirection to files
- Facilitating multi-threaded debugging
use logthis::*;
fn main(){
info!("This is beautiful!");
}