casual_logger 0.6.5

What a bother. I want to logging it without setting it.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use casual_logger::{Log, Table};

fn main() {
    Log::remove_old_logs();

    let key = "YourWeight";
    let value = 97.0;

    Log::info_t(
        "",
        Table::default() //
            .str("key", key)
            .float("value", value),
    );

    Log::flush();
}