//! A set of very common logging [clap] options which also initialize various logging/tracing backends
//!
//! # TODOs
//!
//! - Switch to `tracing` (e.g. `env_logger`, `tracing`, etc...)
//! - Provide a facility to defer to the app for argument names, especially short `-q` style arg names to work with apps with colliding options
//! - Generalize to a "re-usable component with `clap` arguments" framework?
pub use Backend;
pub use StandardConsole;
pub use Verbosity;