Ver código fonte

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

MartinFillon 1 ano atrás
pai
commit
c660beda93
1 arquivos alterados com 1 adições e 0 exclusões
  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))
                 FileTarget::Ok(Box::new(file))
             }
             }
             Err(e) => {
             Err(e) => {
+                debug!("Error {e} following {:?}", absolute_path);
                 error!("Error following link {:?}: {:#?}", &path, e);
                 error!("Error following link {:?}: {:#?}", &path, e);
                 FileTarget::Broken(path)
                 FileTarget::Broken(path)
             }
             }