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 87a5566
Show file tree
Hide file tree
Showing 2 changed files with 2 additions 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
1 change: 1 addition & 0 deletions implementations/rust/ockam/ockam_command/src/status.rs
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ async fn get_orchestrator_version(
let connection = tcp
.connect(controller_tcp_addr, TcpConnectionOptions::new())
.await?;


// Create node that will be used to send the request
let node = {
Expand Down

0 comments on commit 87a5566

Please sign in to comment.