cute-log 1.1.0

Simple and cute logger for log crate
Documentation

cute-log

Build Status Crates.io Documentation

Simple and cute log

Usage

#[macro_use]
extern crate log;
extern crate cute_log;

fn main() {
    cute_log::init();
    info!("it works!");
}

Available features

  • timestamp - Enables timestamp in logs. Enabled by default.
  • color - Enables coloring of log level. Enabled by default.

Log level control

The logger is made without any builtin filters.

You can either control logs through compile time features of log crate. Or use set_max_level.