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:

``` rust use call_logger::CallLogger; use log::LevelFilter;

fn main() { let _ = CallLogger::new() .withlevel(LevelFilter::Info) .withcalltarget("storelog".tostring()) .withlocal_timestamp() .init(); log::info!("Hello logging world") } ```

Features

Contribute

This is just an early attempt at 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.