From a03e7c9bed75df7bfc6a2b27304248d632faa8b8 Mon Sep 17 00:00:00 2001 From: amy null Date: Sun, 23 Apr 2023 14:21:48 -0400 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feature:=200.6.4:=20Reduced=20noisy?= =?UTF-8?q?=20logging?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/config/mod.rs | 2 +- src/enclosure/mod.rs | 1 - 4 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index eb04fd2..0493a6a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -171,7 +171,7 @@ dependencies = [ [[package]] name = "boxxy" -version = "0.6.3" +version = "0.6.4" dependencies = [ "atty", "bat", diff --git a/Cargo.toml b/Cargo.toml index d9517bf..305bd6e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "boxxy" -version = "0.6.3" +version = "0.6.4" edition = "2021" repository = "https://github.com/queer/boxxy" diff --git a/src/config/mod.rs b/src/config/mod.rs index e2a7cd2..af40dab 100644 --- a/src/config/mod.rs +++ b/src/config/mod.rs @@ -114,7 +114,7 @@ impl BoxxyConfig { let paths = Self::rule_paths()?; let mut configs = vec![]; for path in paths { - info!("loading rules from {}", path.display()); + debug!("loading rules from {}", path.display()); let config = Self::load_rules_from_path(&path)?; debug!("loaded {} rules", config.rules.len()); configs.push(config); diff --git a/src/enclosure/mod.rs b/src/enclosure/mod.rs index 8989136..ba84205 100644 --- a/src/enclosure/mod.rs +++ b/src/enclosure/mod.rs @@ -339,7 +339,6 @@ impl Enclosure { } } - info!("* {} -> {}", rule.target, rule.rewrite); debug!("rewrote base bath {rewrite_path:?} => {target_path:?}"); }