1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
mod console_emitter;

/// Utility functions for working with loggers

pub mod util;

/// Support for command-line argument configuration of the logger.

#[cfg(feature="structopt")]
pub mod args;

pub use console_emitter::initialize;
pub use console_emitter::set_progress;
pub use console_emitter::LogPBState;