logsy 1.0.2

Just logging as it should be
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use log::*;

fn main() {
    logsy::set_echo(true);
    logsy::set_level(LevelFilter::Trace);

    trace!("Library function called");
    debug!("Auth attempt");
    info!("Application has just started");
    warn!("Dereferencing null pointers harms");
    error!("This application got a boo-boo and going to be terminated");
}