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.
1 parent 9441496 commit 8824978Copy full SHA for 8824978
src/dist/temp.rs
@@ -36,7 +36,10 @@ impl Drop for Dir {
36
match remove_dir_all::remove_dir_all(&self.path) {
37
Ok(()) => debug!(path = %self.path.display(), "deleted temp directory"),
38
Err(e) => {
39
- warn!(path = %self.path.display(), error = %e, "could not delete temp directory")
+ warn!(
40
+ "could not delete temp directory {} ({e})",
41
+ self.path.display()
42
+ )
43
}
44
45
0 commit comments