From 717579da1da7e5296da3043d55d60e3b5ed44812 Mon Sep 17 00:00:00 2001 From: Roey Darwish Dror Date: Sun, 8 Dec 2019 20:56:03 +0200 Subject: [PATCH] Add debug strings for path detection --- src/utils.rs | 2 ++ 1 file changed, 2 insertions(+) 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()) } }