Skip to content

Commit 6d044be

Browse files
committed
fix: Adjust log levels
1 parent 73593ce commit 6d044be

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/git-branch-stash/src/stack.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,10 +104,10 @@ impl Stack {
104104
let len = elems.len();
105105
if capacity < len {
106106
let remove = len - capacity;
107-
log::warn!("Too many snapshots, clearing {} oldest", remove);
107+
log::debug!("Too many snapshots, clearing {} oldest", remove);
108108
for snapshot_path in &elems[0..remove] {
109109
if let Err(err) = std::fs::remove_file(&snapshot_path) {
110-
log::trace!("Failed to remove {}: {}", snapshot_path.display(), err);
110+
log::debug!("Failed to remove {}: {}", snapshot_path.display(), err);
111111
} else {
112112
log::trace!("Removed {}", snapshot_path.display());
113113
}

0 commit comments

Comments
 (0)