Handsome Logger

Handsome logger aims to be fast, easy to use and configurable logger.

This is a fork of simplelog.rs from commit 70f4dcb6c20de819b68a4c52988e850403f779db and is available under same license as the original project.

I created it because the formatting abilities of this library were insufficient for me and the changes that would have to be made to it to "fix" it were too big.

Example

Features

First add to Cargo.toml, this two lines handsome_logger = "0.3" log = "0.4" ```rust use handsome_logger::{ColorChoice, Config, TermLogger, TerminalMode}; use log::*;

fn main() { handsome_logger::init().unwrap(); // which is simpler alternative to // TermLogger::init(Config::default(), TerminalMode::Mixed, ColorChoice::Auto).unwrap();

trace!("Got TRACE");
debug!("Got DEBUG");
info!("Got INFO");
warn!("Got WARNING");
error!("Got ERROR");

} should print 21:20:22 [INFO] terminallogging: Got INFO 21:20:22 [WARN] terminallogging: Got WARNING 21:20:22 [ERROR] terminal_logging: Got ERROR ```

examples folder contains examples of - formatting logs - saving logs to file and rotating it - using multiple loggers - colouring terminal output - filtering messages

License

Apache 2.0 or MIT, at your option.

Copyright (c) 2023 RafaƂ Mikrut
Copyright (c) 2015-2023 Victor Brekenfeld and contributors(for full list see https://github.com/Drakulix/simplelog.rs/graphs/contributors)