sheen 0.3.0

A polished, colorful logging library for Rust
Documentation
mod formatter;
pub mod global;
mod level;
mod logger;
mod macros;

#[cfg(feature = "log")]
mod log_adapter;

#[cfg(feature = "tracing")]
mod tracing_adapter;

#[cfg(feature = "tracing")]
pub use tracing_adapter::SheenLayer;

pub use formatter::{Formatter, JsonFormatter, LogFmtFormatter, TextFormatter};
pub use global::{info, init, init_with};
pub use level::Level;
pub use logger::Logger;