macro-log 0.3.0

Use #[macro_log::debug] to log: 2023-08-11 15:52:59 - [D] - app/src/main.rs:3 -> called fn main()
Documentation
pub mod time;
pub mod log;
pub use macro_log_macros::*;

#[cfg(test)]
mod tests {
    #[test]
    fn test() {
        crate::i!("Hello {}", "World!");
    }

    #[test]
    fn test_import() {
        use crate::wtf;
        let mut str = "Hello".to_owned();
        wtf!(str);
        wtf!(str.pop());
    }
}