clap_logflag/lib.rs
//! [work in progress]
//!
//! The [clap-logflag](https://crates.io/crates/clap-logflag) library adds a `--log` flag to clap based applications
//! to allow CLI users to configure logging from the command line.
//! It can log to stderr, files and syslog.
#![forbid(unsafe_code)]
// TODO #![deny(missing_docs)]
mod clap;
mod config;
mod fern;
mod parser;
pub use clap::LogArgs;
pub use config::{LogDestination, LogDestinationConfig, LoggingConfig};
pub use fern::_init_logging;