1
 2
 3
 4
 5
 6
 7
 8
 9
10
//! Logging subsystem

#[cfg(feature = "application")]
pub mod component;
mod config;
mod logger;

#[cfg(feature = "application")]
pub use self::component::LoggingComponent;
pub use self::config::Config;