1 unstable release

new 0.1.0 Dec 19, 2024

#366 in Debugging

Download history 52/week @ 2024-12-14

52 downloads per month

Apache-2.0

7KB
164 lines

纯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");
}

No runtime deps