#[cfg(test)]
mod tests {
use crate::logger::{LogLevel, log};
#[test]
fn test_log_levels() {
log(LogLevel::Error, "This is an error");
log(LogLevel::Warning, "This is a warning");
log(LogLevel::Success, "This is a success");
log(LogLevel::Info, "This is an info");
}
}