10 releases (5 breaking)
0.6.0 | Oct 11, 2019 |
---|---|
0.5.0 | Oct 8, 2019 |
0.4.0 | Oct 7, 2019 |
0.3.0 | Oct 7, 2019 |
0.1.3 | May 31, 2019 |
#821 in Debugging
29 downloads per month
20KB
436 lines
slog-env-cfg
Opinionated slog drains builder, configurable via env vars.
Description
This crate builds an slog Drain
that writes to stdout. It's designed to be easy to use and with sane defaults. The format of the log records is configurable at runtime via LOG_FORMAT
environment variable.
Possible values for LOG_FORMAT
are:
terminal
(default)json
The idea is that in development environment, where you just run the executable manually and in the absence of centralized logging,
you would rely on human-readable log output. At deployment, on the contrary, centralized logging system can make use of JSON-formatted
logs, so the LOG_FORMAT=json
can be set. The configuration is at runtime, so you only need to manage a single build artifact for both
use cases.
This crate aims to be an opinionated solution, and no other configuration is available so far. Yet, I'm open to adding other tweaks if they're justified.
Usage
Here's a minimal complete main.rs
example:
use slog::{info, o};
fn main() {
let drain = slog_env_cfg::logger_from_env(o!()).expect("initialization error");
info!(root, "formatted: {}", 1; "log-key" => true);
}
Dependencies
~4–13MB
~144K SLoC