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
//! For test.
//! テスト用。

use casual_logger::{Log, Table};

fn main() {
    Log::set_file_name("test-fatal");
    Log::remove_old_logs();

    // panic!(Log::fatal("Critical message!"));

    panic!(Log::fatal_t(
        "Critical message!",
        Table::default().int("Apple", 1)
    ));
}