diff --git a/Cargo.lock b/Cargo.lock index fe4926175..10479bde0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -605,6 +605,7 @@ dependencies = [ "clippy 0.0.85 (registry+https://github.com/rust-lang/crates.io-index)", "env_logger 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "ethcore 1.4.0", + "ethcore-devtools 1.4.0", "ethcore-io 1.4.0", "ethcore-ipc 1.4.0", "ethcore-ipc-codegen 1.4.0", diff --git a/devtools/src/random_path.rs b/devtools/src/random_path.rs index d58042512..4c2ac189d 100644 --- a/devtools/src/random_path.rs +++ b/devtools/src/random_path.rs @@ -77,7 +77,7 @@ impl Drop for RandomTempPath { fn drop(&mut self) { if let Err(_) = fs::remove_dir_all(&self) { if let Err(e) = fs::remove_file(&self) { - panic!("Failed to remove temp directory. Here's what prevented this from happening: ({})", e); + println!("Failed to remove temp directory. Here's what prevented this from happening: ({})", e); } } }