diff --git a/src/core/src/storage/mod.rs b/src/core/src/storage/mod.rs index 714fb63162..856f8ff210 100644 --- a/src/core/src/storage/mod.rs +++ b/src/core/src/storage/mod.rs @@ -660,7 +660,7 @@ impl Storage for MemStorage { let x = self.sigs.read().unwrap(); match x.get(path) { Some(path) => Ok(path.clone()), - None => panic!("cannot get path") + None => panic!("cannot get path '{path}'") } }