// Test std/log module
use std::log
fn main() {
println!("Testing std/log module...")
// Initialize logger
init()
// Test all log levels
trace("This is a trace message")
debug("This is a debug message")
info("This is an info message")
warn("This is a warning message")
error("This is an error message")
println!("std/log works! ✓")
}