extern crate ansi_term;
#[macro_use] extern crate log;
extern crate loggerv;
fn main() {
#[cfg(windows)] ansi_term::enable_ansi_support().unwrap();
loggerv::Logger::new()
.max_level(log::Level::Info)
.level(true)
.no_module_path()
.no_colors()
.init()
.unwrap();
error!("This is printed to stderr with this configuration");
warn!("This is printed to stderr with this configuration");
info!("This is printed to stdout with this configuration");
debug!("This is not printed to stdout with this configuration");
trace!("This is not printed to stdout with this configuration");
}