privacy-log 0.1.1

rust-lang/log without file names and line
Documentation
1
2
3
4
5
6
7
8
9
10
use privacy_log::{error, info, trace, warn};

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

    error!("error");
    info!("error");
    trace!("error");
    warn!("error");
}