log-table 0.1.0

Print and save logs in a table format.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod color;
pub mod logger;

#[macro_export]
macro_rules! table_data {
    ($($key:ident : $value:expr),* $(,)?) => {{
        let mut map = ::indexmap::IndexMap::new();
        $(
            let value_str = format!("{}", $value);
            map.insert(stringify!($key), value_str);
        )*
        map
    }};
}