Skip to content

Commit 0bc0aaa

Browse files
committed
add logging to remove_cargo_config
1 parent 6e4d09d commit 0bc0aaa

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/prepare.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ impl<'a> Prepare<'a> {
7373
fn remove_cargo_config(&self) -> Result<(), Error> {
7474
let path = self.source_dir.join(".cargo").join("config");
7575
if path.exists() {
76-
remove_file(path)?;
76+
remove_file(path.clone())?;
77+
info!("removed {}", path.as_path().display());
7778
}
7879
Ok(())
7980
}

0 commit comments

Comments
 (0)