Crates.io | clap-verbosity-flag |
lib.rs | clap-verbosity-flag |
version | 3.0.4 |
created_at | 2018-05-29 08:42:42.268362+00 |
updated_at | 2025-08-19 13:47:20.259855+00 |
description | Easily add a `--verbose` flag to CLIs using Clap |
homepage | |
repository | https://github.com/clap-rs/clap-verbosity-flag |
max_upload_size | |
id | 67572 |
size | 69,476 |
log
/ tracing
Easily add --verbose
and --quiet
flags to CLIs using Clap.
$ cargo add clap-verbosity-flag
use clap::Parser;
#[derive(Debug, Parser)]
struct Cli {
#[command(flatten)]
verbosity: clap_verbosity_flag::Verbosity,
}
fn main() {
let args = Cli::parse();
env_logger::Builder::new()
.filter_level(args.verbosity.into())
.init();
// Your code here
}
For tracing
support, use the tracing
feature:
$ cargo add clap-verbosity-flag --no-default-features --features tracing
use clap::Parser;
#[derive(Debug, Parser)]
struct Cli {
#[command(flatten)]
verbosity: clap_verbosity_flag::Verbosity,
}
fn main() {
let args = Cli::parse();
tracing_subscriber::fmt()
.with_max_level(args.verbosity)
.init();
// Your code here
}
The default verbosity level will cause log
/ tracing
to only report errors. The flags can be
specified multiple times to increase or decrease the verbosity level. See the Documentation for
info on how to change the default verbosity level.
-q
/ --quiet
-v
/ --verbose
-vv
/ --verbose --verbose
-vvv
/ --verbose --verbose --verbose
-vvvv
/ --verbose --verbose --verbose --verbose
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual-licensed as above, without any additional terms or conditions.