rusty-logger 0.3.0

A modular and simple logger for rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub enum LogType {
    Info,
    Warning,
    Error,
    Time,
}

#[derive(Copy, Clone)]
pub enum TimeUnit {
    Nanoseconds,
    Microseconds,
    Milliseconds,
}