aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordiogo464 <[email protected]>2021-12-23 19:57:47 +0000
committerdiogo464 <[email protected]>2021-12-23 19:57:47 +0000
commit2ec4ae9c01c56e8e1b9bf619578278e9f8a06449 (patch)
tree905395897c0c3bff4d88af8be30af2c879fbf43a
parentef5ca45a72106cffddfff4f57f1eef652670bb3b (diff)
changed default log level to warn
-rw-r--r--dotup_cli/src/main.rs5
1 files 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<()> {
63 63
64 if !opts.quiet { 64 if !opts.quiet {
65 let log_level = match opts.verbose { 65 let log_level = match opts.verbose {
66 0 => "info", 66 0 => "warn",
67 1 => "debug", 67 1 => "info",
68 2 => "debug",
68 _ => "trace", 69 _ => "trace",
69 }; 70 };
70 71