# void_log **Repository Path**: void_project/void_log ## Basic Information - **Project Name**: void_log - **Description**: No description available - **Primary Language**: Rust - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-01-15 - **Last Updated**: 2026-01-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 纯Rust实现的Log日志库 * 输出语言均为中文 * Cargo.toml ``` [dependencies] void_log = { git = "https://github.com/VoidWind369/void_log.git" } ``` * Code ``` #[test] fn test() { log_warn!("Warn"); log_error!("Error"); log_link!("Link"); log_msg!("Message"); log_debug!("Debug"); } ```