scorched 0.5.3

A simple logging library for scorching all those pesky bugs.
Documentation
1
2
3
4
5
6
7
8
9
10
/// logf!() is a macro that allows you to log without needing to explicitly format the log message
#[macro_export]
macro_rules! logf {
    ($importance:ident, $($arg:tt)*) => {
        $crate::log_this(LogData {
            importance: LogImportance::$importance,
            message: format!($($arg)*).to_string(),
        });
    };
}