3 unstable releases

0.2.0 Oct 12, 2019
0.1.1 Oct 22, 2018
0.1.0 Feb 14, 2018

#574 in Debugging

Download history 6652/week @ 2023-11-20 7671/week @ 2023-11-27 6573/week @ 2023-12-04 7114/week @ 2023-12-11 5876/week @ 2023-12-18 2255/week @ 2023-12-25 3588/week @ 2024-01-01 5132/week @ 2024-01-08 5206/week @ 2024-01-15 5375/week @ 2024-01-22 5635/week @ 2024-01-29 6441/week @ 2024-02-05 6200/week @ 2024-02-12 8198/week @ 2024-02-19 8049/week @ 2024-02-26 8038/week @ 2024-03-04

30,720 downloads per month
Used in 6 crates (4 directly)

MIT/Apache

14KB
132 lines

Slog Derives

Build Status Crates.io Link Online Documentation

Custom derives for use with slog logging.

The KV Derive

Sometimes you'll want to log the struct's contents in your application, for example when you've just started and want to record the configuration details for debugging purposes. Usually you'd need to do something like this:

#[macro_use]
extern crate slog;
use std::path::PathBuf;

struct Config {
    width: f64,
    height: f64,
    url: String,
}

let cfg = Config { ... };

debug!(logger, "Loaded Config";
    "width" => cfg.width,
    "height" => cfg.height,
    "url" => cfg.url);
# }

This is where the KV trait comes in. Implementing it lets you log a type as a bunch of key-value pairs, translating the previous log statement into something like this:

debug!(logger, "Loaded Config"; cfg);

This crate provides a custom derive which will implement KV for you. It'll just iterate over each field in your struct and invoke Value::serialize() on each. You can also use the #[slog(skip)] attribute to skip specific fields.

#[derive(KV)]
pub struct Config {
  width: f64,
  height: f64,
  #[slog(skip)]
  url: String,
}

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~1.5MB
~32K SLoC