diff --git a/devtools/src/random_path.rs b/devtools/src/random_path.rs index b037867fa..990d375e3 100644 --- a/devtools/src/random_path.rs +++ b/devtools/src/random_path.rs @@ -59,7 +59,7 @@ impl RandomTempPath { impl Drop for RandomTempPath { fn drop(&mut self) { if let Err(e) = fs::remove_dir_all(self.as_path()) { - panic!("failed to remove temp directory, probably something failed to destroyed ({})", e); + panic!("Failed to remove temp directory. Here's what prevented this from happening: ({})", e); } } }