Skip to content

Commit

Permalink
✨ feature: 0.6.4: Reduced noisy logging
Browse files Browse the repository at this point in the history
  • Loading branch information
queer committed Apr 23, 2023
1 parent 9a61acd commit a03e7c9
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "boxxy"
version = "0.6.3"
version = "0.6.4"
edition = "2021"
repository = "https://github.com/queer/boxxy"

Expand Down
2 changes: 1 addition & 1 deletion src/config/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
1 change: 0 additions & 1 deletion src/enclosure/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,6 @@ impl Enclosure {
}
}

info!("* {} -> {}", rule.target, rule.rewrite);
debug!("rewrote base bath {rewrite_path:?} => {target_path:?}");
}

Expand Down

0 comments on commit a03e7c9

Please sign in to comment.