Skip to content

Commit

Permalink
🔨 chore: Reduce log noise
Browse files Browse the repository at this point in the history
  • Loading branch information
queer committed Oct 13, 2023
1 parent 211e8ff commit 4e18646
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/enclosure/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -303,9 +303,9 @@ impl Enclosure {
self.fs.bind_mount_rw(Path::new("/"), &container_root)?;

// Apply all rules via bind mounts
info!("applying {} rules", applicable_rules.len());
debug!("applying {} rules", applicable_rules.len());
for rule in applicable_rules {
info!("applying rule '{}'", rule.name);
debug!("applying rule '{}'", rule.name);

let expanded_target = self.fs.fully_expand_path(&rule.target)?;
// Rewrite target path into the container
Expand Down

0 comments on commit 4e18646

Please sign in to comment.