Sfoglia il codice sorgente

fix: adding more debugging infos in order to understand the problem better

MartinFillon 1 anno fa
parent
commit
c660beda93
1 ha cambiato i file con 1 aggiunte e 0 eliminazioni
  1. 1 0
      src/fs/file.rs

+ 1 - 0
src/fs/file.rs

@@ -439,6 +439,7 @@ impl<'dir> File<'dir> {
                 FileTarget::Ok(Box::new(file))
             }
             Err(e) => {
+                debug!("Error {e} following {:?}", absolute_path);
                 error!("Error following link {:?}: {:#?}", &path, e);
                 FileTarget::Broken(path)
             }