minilog 0.1.0

Zero-dependency logging library.
Documentation
  • Coverage
  • 0%
    0 out of 5 items documented0 out of 1 items with examples
  • Size
  • Source code size: 10.42 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 181.67 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • zX3no/mini
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • zX3no
use minilog::*;

fn main() {
    info!("This is an info message");
    warn!("This is a warning!");
    error!("This is an error!!!");
}

Use --features "strip" to remove logging from your build.

Use --features "warn" to hide info.

Use --features "error" to hide info and warnings.