From 8a914b7b90a41bb780a9ecc0481ff940fa855682 Mon Sep 17 00:00:00 2001 From: Avery Harnish Date: Thu, 29 Apr 2021 14:24:54 -0500 Subject: [PATCH] feat: adds help text to --log (#486) --- 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,