artifact 0.2.4

A logging library which allows settings to be specified through cargo features.
Documentation
1
2
3
4
5
6
7
8
9
10
extern crate artifact;

use artifact::{Logger, LoggerOutput, ArtifactGlobalLib};

fn main() {
  let _artifact_global = ArtifactGlobalLib::init();

  let logger = Logger::new("Foo", LoggerOutput::StdoutLog);
  logger.wtf("WHAT IS HAPPENING!");
}