tlog 0.1.3

A debug library which writes logs into file.
Documentation
1
2
3
4
5
6
7
8
use tlog::{tlog, type_name};

fn main() {
    tlog!("hello");

    let n = 3;
    tlog!("5 x 7 = {}, {}", 5 * 7, type_name(&n));
}