/logthis

A simple, beautiful, and easy-to-use logging library for Rust.

Primary LanguageRustMIT LicenseMIT

Beautiful log this!

A simple, beautiful, and easy-to-use logging library for Rust.

Features

  • 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

Example

use logthis::*;

fn main(){
    info!("This is beautiful!");
}