Skip to content

Commit 33b35c5

Browse files
committed
🚧 outdated_pkgs: additional debug log is redundant
1 parent 64f8b12 commit 33b35c5

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

‎src/main.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -425,11 +425,9 @@ fn handle_outdated_pkgs(profile: &config::Profile, outdated_pkgs: &[String]) ->
425425

426426
// TODO(vnepogodin): make a prompt on every run here in case iteractive is on
427427
if profile.backup && profile.backup_dir != Some(profile.repo.clone()) {
428-
log::debug!("mv into backup dir '{outdated_pkg}'..");
429428
log::info!("backup '{outdated_pkg_entry}'..");
430429
handle_pkgfile_move(outdated_pkg, profile.backup_dir.as_ref().unwrap())?;
431430
} else {
432-
log::debug!("removing '{outdated_pkg}'..");
433431
log::info!("rm '{outdated_pkg_entry}'..");
434432
// we would rather be fail safe here and just report without *panicing*
435433
if let Err(rm_err) = fs::remove_file(outdated_pkg) {

0 commit comments

Comments
 (0)