We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 73593ce + 6d044be commit c767929Copy full SHA for c767929
crates/git-branch-stash/src/stack.rs
@@ -104,10 +104,10 @@ impl Stack {
104
let len = elems.len();
105
if capacity < len {
106
let remove = len - capacity;
107
- log::warn!("Too many snapshots, clearing {} oldest", remove);
+ log::debug!("Too many snapshots, clearing {} oldest", remove);
108
for snapshot_path in &elems[0..remove] {
109
if let Err(err) = std::fs::remove_file(&snapshot_path) {
110
- log::trace!("Failed to remove {}: {}", snapshot_path.display(), err);
+ log::debug!("Failed to remove {}: {}", snapshot_path.display(), err);
111
} else {
112
log::trace!("Removed {}", snapshot_path.display());
113
}
0 commit comments