From e270db56dcdf13d5bcb92e13478641af59c468a3 Mon Sep 17 00:00:00 2001 From: Avery Harnish Date: Thu, 29 Apr 2021 12:17:22 -0500 Subject: [PATCH] feat: adds help text to --log --- src/cli.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cli.rs b/src/cli.rs index 7d9ecaf46..e89d86fd6 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -45,6 +45,7 @@ pub struct Rover { #[structopt(subcommand)] pub command: Command, + /// Specify Rover's log level #[structopt(long = "log", short = "l", global = true, possible_values = &LEVELS, case_insensitive = true)] #[serde(serialize_with = "from_display")] pub log_level: Option,