summaryrefslogtreecommitdiffstats
path: root/src/files.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/files.rs')
-rw-r--r--src/files.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/files.rs b/src/files.rs
index 44f5470..a4bbbcc 100644
--- a/src/files.rs
+++ b/src/files.rs
@@ -424,9 +424,9 @@ impl Files {
file.path = new_path.into();
file.reload_meta()?;
},
- DebouncedEvent::Error(err, path) => {
- dbg!(err);
- dbg!(path);
+ DebouncedEvent::Error(err, _path) => {
+ // Never seen this happen. Should reload affected dirs
+ HError::log::<()>(&format!("{}", err))?;
},
_ => {},
}