From 3914df3c6f5c7dedd75f4f9d741509d05a09ffd9 Mon Sep 17 00:00:00 2001 From: Guy Bedford Date: Mon, 7 Mar 2022 16:25:36 -0800 Subject: [PATCH] silence not existing watcher for now --- src/task.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/task.rs b/src/task.rs index 4140c1c..6d830da 100644 --- a/src/task.rs +++ b/src/task.rs @@ -142,7 +142,7 @@ impl File { match watcher.watch(&self.name, RecursiveMode::Recursive) { Ok(_) => {} Err(_) => { - eprintln!("Unable to watch {}", self.name); + // eprintln!("Unable to watch {}", self.name); } }; }