logger_bro 0.2.0

A simple, aligned, colorful logger with [level] [obj]: message formatting.
Documentation

logger_bro

Use Example

Create an instance: pub static LOGGER: Lazy = Lazy::new(|| Logger::new(obj_txt_width));

Use inside another .rs: use logger_bro::{info, ...}; use super::config::{LOGGER};

info!(
    &LOGGER,
    "obj",
    "msg",
    args,
);