From 0929e662cbf5cde2f0558df785830a24118c930e Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Fri, 23 Aug 2024 14:09:15 +0200 Subject: fix(cli/verbosity): Simplify setting the default level --- src/cli.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/cli.rs') diff --git a/src/cli.rs b/src/cli.rs index 1638e05..d3ec262 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -30,7 +30,7 @@ pub struct CliArgs { pub command: Option, /// Increase message verbosity - #[arg(long="verbose", short = 'v', action = ArgAction::Count, default_value_t = u8::MAX)] + #[arg(long="verbose", short = 'v', action = ArgAction::Count)] pub verbosity: u8, /// Set the path to the videos.db. This overrides the default and the config file. -- cgit 1.4.1