1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
    Appellation: logging <module>
    Contributors: FL03 <jo3mccain@icloud.com> (https://gitlab.com/FL03)
    Description:
        ... Summary ...
*/
pub use self::{logger::Logger, utils::*};

mod logger;

pub trait Loggable {
    fn level(&self) -> String;
}

pub(crate) mod utils {}