improve help test for verbosity

This commit is contained in:
Carson McManus 2022-06-19 12:48:07 -04:00
parent 5e3b2507ab
commit 174456226b

View file

@ -14,7 +14,7 @@ pub(crate) struct Args {
pub mafiles_path: Option<String>, pub mafiles_path: Option<String>,
#[clap(short, long, help = "Specify your encryption passkey.")] #[clap(short, long, help = "Specify your encryption passkey.")]
pub passkey: Option<String>, pub passkey: Option<String>,
#[clap(short, long, arg_enum, default_value_t=Verbosity::Info, help = "Set the log level.")] #[clap(short, long, arg_enum, default_value_t=Verbosity::Info, help = "Set the log level. Be warned, trace is capable of printing sensitive data.")]
pub verbosity: Verbosity, pub verbosity: Verbosity,
#[clap(subcommand)] #[clap(subcommand)]