diff --git a/src/utils.rs b/src/utils.rs index ac602bef..cbcbbbbc 100644 --- a/src/utils.rs +++ b/src/utils.rs @@ -56,8 +56,10 @@ where fn require(self) -> Result { if self.as_ref().exists() { + debug!("Path {:?} exists", self.as_ref()); Ok(self) } else { + debug!("Path {:?} doesn't exist", self.as_ref()); Err(ErrorKind::SkipStep.into()) } }