tlogger 0.1.0

A simple logging library with a neat style.
Documentation
#[cfg(test)]
#[test]
pub fn info() {
    use super::*;
    
    init_logger("Logs").unwrap();

    info!("Server", "Starting");
    success!("Login", "User {} connected", "Alice");
    debug!("Processing", "Items in queue: {}", 42);
    warn!("Memory", "Usage at {}%", 85);
    error!("Database", "Connection failed");

    info_box!("Aafewkbveruwubv'gwwerubkv/erron", "Your super secure super system is starting up.");
    warn_box!("Memory", "Memory usage is at {}%", 85);
    error_box!("Database", "Database connection failed");
    success_box!("Login", "User {} connected", "Alice");
    debug_box!("Processing", "Items in queue: {}", 42);
}