call_logger

Crates.iocall_logger
lib.rscall_logger
version0.1.0
sourcesrc
created_at2023-03-07 00:07:15.198116
updated_at2024-03-08 22:41:04.112491
descriptionA logger that calls another application for every logged item
homepagehttps://github.com/a1ecbr0wn/call_logger
repositoryhttps://github.com/a1ecbr0wn/call_logger
max_upload_size
id803109
size44,745
Alec Brown (a1ecbr0wn)

documentation

https://docs.rs/call_logger

README

call_logger

Crates.io Crates.io Build Status docs.rs dependency status

A logger that calls another application for every logged item, passing a json formatted string that contains the details of the log event.

Usage

Use of the builder model to set up the logger to call a script called store_log:

use call_logger::CallLogger;
use log::LevelFilter;

fn main() {
    let _ = CallLogger::new()
        .with_level(LevelFilter::Info)
        .with_call_target("store_log".to_string())
        .with_local_timestamp()
        .init();
    log::info!("Hello logging world")
}

Features

  • timestamps - add a timestamp to the output

Contribute

This is just a general purpose logger that calls out to another process. If you have any ideas for missing features, please raise an issue or a PR.

Commit count: 12

cargo fmt