#debugging #development #logging

easy-logging

An easy way to get logging working in your CLI tool

3 releases

Uses old Rust 2015

0.1.2 May 10, 2021
0.1.1 Aug 16, 2019
0.1.0 Sep 30, 2018

#45 in #development

Download history 19/week @ 2022-11-27 31/week @ 2022-12-04 39/week @ 2022-12-11 103/week @ 2022-12-18 94/week @ 2022-12-25 31/week @ 2023-01-01 37/week @ 2023-01-08 23/week @ 2023-01-15 72/week @ 2023-01-22 57/week @ 2023-01-29 43/week @ 2023-02-05 43/week @ 2023-02-12 50/week @ 2023-02-19 157/week @ 2023-02-26 111/week @ 2023-03-05 33/week @ 2023-03-12

356 downloads per month
Used in 2 crates

Unlicense

8KB
148 lines

easy-logging

An easy way to get logging working in your command line tool. Suitable for simple CLI and prototyping.

Requires a single function call and provides colored logging to stdout/stderr out of the box.

Usage

Add to your Cargo.toml:

[dependencies]
easy-logging = "*"

Example:

extern crate easy_logging;
#[macro_use] extern crate log;

fn main() {
    easy_logging::init(module_path!(), log::Level::Info).unwrap();
    debug!("Test debug message.");
    info!("Test info message.");
}

Output with enabled info level:

I: Test info message.

Output with enabled debug level:

[22:29:18.084] [   main.rs:006] D: Test debug message.
[22:29:18.085] [   main.rs:007] I: Test info message.

Dependencies

~1.5MB
~21K SLoC