From 2ec4ae9c01c56e8e1b9bf619578278e9f8a06449 Mon Sep 17 00:00:00 2001 From: diogo464 Date: Thu, 23 Dec 2021 19:57:47 +0000 Subject: changed default log level to warn --- dotup_cli/src/main.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dotup_cli/src/main.rs b/dotup_cli/src/main.rs index 5f02e68..fe2196e 100644 --- a/dotup_cli/src/main.rs +++ b/dotup_cli/src/main.rs @@ -63,8 +63,9 @@ fn main() -> anyhow::Result<()> { if !opts.quiet { let log_level = match opts.verbose { - 0 => "info", - 1 => "debug", + 0 => "warn", + 1 => "info", + 2 => "debug", _ => "trace", }; -- cgit