#module #log4rs #log #setting #rotate #size #file-path

log4rs-cases

Modules to use log4rs easily

3 unstable releases

0.2.0 Oct 27, 2020
0.1.1 Aug 10, 2019
0.1.0 Aug 4, 2019

#7 in #rotate

Download history 3/week @ 2024-02-20 16/week @ 2024-02-27 11/week @ 2024-03-26 44/week @ 2024-04-02

55 downloads per month

MIT/Apache

9KB
168 lines

log4rs-cases

Modules to use log4rs easily.

Usage

fn main() {

    // 1. setting to rotate log files by size.
    let setting = rotate::size::SettingBuilder::new()
        .file_path("sample/sample.log")
        .file_pattern("backup/sample.{}.log")
        .build();

    // 2. create log4rs Config.
    let config = setting.configure().unwrap();

    // 3. call init_config() as usual.
    log4rs::init_config(config).unwrap();

    let greeting = "hello, world!";

    debug!("debug: {}", greeting);
    info!("info: {}", greeting);
    warn!("warn: {}", greeting);
    error!("error: {}", greeting);
}

output:

$ tail -f sample/sample.log

2019-08-10T16:59:36.011987+09:00 [DEBUG] sample_app debug: hello, world!
2019-08-10T16:59:36.012626+09:00 [INFO] sample_app info: hello, world!
2019-08-10T16:59:36.012680+09:00 [WARN] sample_app warn: hello, world!
2019-08-10T16:59:36.012731+09:00 [ERROR] sample_app error: hello, world!

Dependencies

~520KB