zlog 0.1.0

A tiny-teeny logging facade, writing to stdout on a separate thread
Documentation
  • Coverage
  • 0%
    0 out of 4 items documented0 out of 2 items with examples
  • Size
  • Source code size: 4.77 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.31 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • pzol

zlog

A plain logger which writes to the console on a separate thread.

Usage

extern crate zlog;
extern crate log;
use zlog::ConsoleLogger;

pub fn main() {
    console_logger::init(env!("LOG_LEVEL"));

}