Skip to content

Commit

Permalink
fix -v switch comment to reflect the code
Browse files Browse the repository at this point in the history
  • Loading branch information
joeshaw committed Jul 17, 2023
1 parent 7fde5a7 commit 74b14ff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cli/src/opts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@ pub struct SharedArgs {
/// Set of experimental WASI modules to link against.
#[arg(value_enum, long = "experimental_modules", required = false)]
experimental_modules: Vec<ExperimentalModuleArg>,
/// Verbosity of logs for Viceroy. `-v` sets the log level to DEBUG and
/// `-vv` to TRACE. This option will not take effect if you set RUST_LOG
/// to a value before starting Viceroy
/// Verbosity of logs for Viceroy. `-v` sets the log level to INFO,
/// `-vv` to DEBUG, and `-vvv` to TRACE. This option will not take
/// effect if you set RUST_LOG to a value before starting Viceroy
#[arg(short = 'v', action = clap::ArgAction::Count)]
verbosity: u8,
}
Expand Down

0 comments on commit 74b14ff

Please sign in to comment.