Skip to content

Commit

Permalink
refactor(rust): improve help of global verbose flag in ockam command
Browse files Browse the repository at this point in the history
  • Loading branch information
rjtch authored and adrianbenavides committed Oct 3, 2023
1 parent 2cc39ef commit b685f08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion implementations/rust/ockam/ockam_command/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -162,11 +162,11 @@ pub struct GlobalArgs {
#[arg(global = true, long, short, default_value_t = quiet_default_value())]
quiet: bool,

/// Increase verbosity of trace messages
#[arg(
global = true,
long,
short,
help("Increase verbosity of trace messages"),
long_help("Increase verbosity of trace messages by repeating the flag. Learn more at https://crates.io/crates/clap-verbosity-flag"),
action = ArgAction::Count
)]
Expand Down

0 comments on commit b685f08

Please sign in to comment.