8 releases

0.1.7 Oct 11, 2022
0.1.6 Apr 25, 2022
0.1.4 Mar 31, 2022
0.1.3 Jun 18, 2021
0.1.0 Nov 14, 2019

#404 in Parser implementations

Download history 165/week @ 2023-08-02 192/week @ 2023-08-09 265/week @ 2023-08-16 159/week @ 2023-08-23 225/week @ 2023-08-30 225/week @ 2023-09-06 192/week @ 2023-09-13 227/week @ 2023-09-20 265/week @ 2023-09-27 251/week @ 2023-10-04 173/week @ 2023-10-11 227/week @ 2023-10-18 216/week @ 2023-10-25 271/week @ 2023-11-01 257/week @ 2023-11-08 142/week @ 2023-11-15

936 downloads per month
Used in 10 crates (5 directly)

MIT/Apache

13KB
130 lines

A logging library used by Filecoin

This crate is used to make sure that all Filecoin related crates log in the same format.

By default the fil_logger doesn't log anything. You can change this by setting the RUST_LOG environment variable to another level. This will show log output on stderr. Example:

$ RUST_LOG=info cargo run --example simple
    Finished dev [unoptimized + debuginfo] target(s) in 0.02s
     Running `target/debug/examples/simple`
2019-11-11T20:26:09.448 INFO simple > logging on into level
2019-11-11T20:26:09.448 WARN simple > logging on warn level
2019-11-11T20:26:09.448 ERROR simple > logging on error level

It is also possible to ouput the log as JSON. Simply set the GOLOG_LOG_FMT environment variable to json. It is a bit more verbose and also contains the line file and line number of the log call:

$ GOLOG_LOG_FMT=json RUST_LOG=info cargo run --example simple
    Finished dev [unoptimized + debuginfo] target(s) in 0.03s
     Running `target/debug/examples/simple`
{"level":"info","ts":"2019-11-11T20:59:31.168+0100","logger":"simple","caller":"examples/simple.rs:30","msg":"logging on into level"}
{"level":"warn","ts":"2019-11-11T20:59:31.168+0100","logger":"simple","caller":"examples/simple.rs:31","msg":"logging on warn level"}
{"level":"error","ts":"2019-11-11T20:59:31.168+0100","logger":"simple","caller":"examples/simple.rs:32","msg":"logging on error level"}

Example

use fil_logger;
use log::{debug, error, info, trace, warn};

fn main() {
    fil_logger::init();

    trace!("logging on trace level");
    debug!("logging on debug level");
    info!("logging on into level");
    warn!("logging on warn level");
    error!("logging on error level");
}

License

The Filecoin Project is dual-licensed under Apache 2.0 and MIT terms:

Dependencies

~1.7–7.5MB
~49K SLoC