From db42ce18a26c4b457086602ae0a1d0ca95ca55cf Mon Sep 17 00:00:00 2001 From: diogo464 Date: Fri, 9 Jul 2021 10:14:23 -0400 Subject: Fixed clippy warnings. --- dotup_cli/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dotup_cli/src/main.rs') diff --git a/dotup_cli/src/main.rs b/dotup_cli/src/main.rs index b4339c9..05fdcab 100644 --- a/dotup_cli/src/main.rs +++ b/dotup_cli/src/main.rs @@ -69,7 +69,7 @@ fn main() -> anyhow::Result<()> { 0 => "warn", 1 => "info", 2 => "debug", - 3 | _ => "trace", + _ => "trace", }; Logger::try_with_env_or_str(log_level)? -- cgit