This is a Rust crate that provides a [log4rs
] configuration with custom
appenders that logs like the [mlzlog
] Python package.
This crate works with Cargo and can be found
on crates.io with a Cargo.toml
like:
toml
[dependencies]
log = "*"
mlzlog = "*"
Minimum supported Rust versions is 1.41.1.
Initialize logging at the beginning of your program and then use the
macros from the log
crate. Example:
```rust
extern crate log; extern crate mlzlog;
fn main() { mlzlog::init("/path/to/base", "myapp", false, true);
info!("starting up");
} ```