From 174456226b13ba9cb95aae6d042a44f9e00da243 Mon Sep 17 00:00:00 2001 From: Carson McManus Date: Sun, 19 Jun 2022 12:48:07 -0400 Subject: [PATCH] improve help test for verbosity --- src/cli.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli.rs b/src/cli.rs index f4d52a2..984b259 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -14,7 +14,7 @@ pub(crate) struct Args { pub mafiles_path: Option, #[clap(short, long, help = "Specify your encryption passkey.")] pub passkey: Option, - #[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, #[clap(subcommand)]