ignite 0.1.6

ignite serves the role as a "batteries included" addon to stdlib providing useful stuff and higher level functions along with abstractions.
Documentation
1
2
3
4
5
6
7
8
9
10
use log::Log;

#[test]
fn log_test() {
    let mut log = Log::new();
    log.set_write(1);

    log.info("This is some info".to_string());
    log.warning("This is a warning".to_string());
}