//! # Logger
//!
//! `logger` is the module providing the traits and types used for logging to stdout/stderr.
/// Type used to represent the log level.
/// Type used to represent the log file.
/// Trait implemented by types used to log to stdout/stderr.
pub use LogLevel;
pub use LogFile;
pub use Logger;