kv-log-macro 1.0.7

Log macro for log's kv-unstable backend.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use kv_log_macro::info;

fn main() {
    femme::start(log::LevelFilter::Info).unwrap();
    info!("hello");
    info!("hello",);
    info!("hello {}", "cats");
    info!("hello {}", "cats",);
    info!("hello {}", "cats", {
        cat_1: "chashu",
        cat_2: "nori",
        cat_count: 2,
    });
}