From 0cf8d9759f1bcfef39626406867c41b425178d48 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Fri, 23 Aug 2024 13:59:35 +0200 Subject: fix(cli): Always log with a verbosity of at least WARN This ensures that warnings actually reach the user. And the `--quite` flag can still be used to silence all output. --- 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 d3ec262..1638e05 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)] + #[arg(long="verbose", short = 'v', action = ArgAction::Count, default_value_t = u8::MAX)] pub verbosity: u8, /// Set the path to the videos.db. This overrides the default and the config file. -- cgit 1.4.1