mitrid_core 0.9.4

Core library of the Mitrid framework
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! # Logger
//!
//! `logger` is the module providing the traits and types used for logging to stdout/stderr.

/// Type used to represent the log level.
pub mod log_level;

/// Type used to represent the log file.
pub mod log_file;

/// Trait implemented by types used to log to stdout/stderr.
pub mod logger;

pub use self::log_level::LogLevel;
pub use self::log_file::LogFile;
pub use self::logger::Logger;