Simple logging ! Docs
cargo says otherwise to use 2.0.0 but it doesnt exist so use 1.0.1 :D
toml
[dependencies]
logr = "1.0.1"
Simple: ```rust use logr::Logger;
fn main() {
// input your own types in this vv
let logger = Logger::get::
logger.info("info log !");
} ```