void_log 0.1.2

An fast log print
Documentation
  • Coverage
  • 0%
    0 out of 37 items documented0 out of 3 items with examples
  • Size
  • Source code size: 17.76 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.79 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 11s Average build duration of successful builds.
  • all releases: 10s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • VoidWind369

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