mahogany 0.1.0

[BETA] Logging framework for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod logger;
mod enums;
mod debuggable;
mod standard;
mod log_location;

pub use debuggable::Loggable;
pub use logger::{Logger, LogInstance};
pub use enums::LogLevel;
pub use log_location::LogLocation;
pub use standard::{StandardLogLevel, StandardLogLevelLogger};