Commit 8e6f7b0
authored
Enable path debug in filesystem error messages (#93)
Before:
```
failed to open file `file.txt`: The system cannot find the file specified. (os error 2)
```
After (with `debug` feature):
```
failed to open file `file.txt`: The system cannot find the file specified. (os error 2)
Path does not exist `file.txt`
- Absolute path `/path/to/dir/file.txt`
- Missing `file.txt` from parent directory:
`/path/to/dir`
└── `file.md`
└── `different.txt`
```1 parent a6f1c5e commit 8e6f7b0
2 files changed
+37
-10
lines changedSome generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
15 | 15 | | |
16 | 16 | | |
17 | 17 | | |
18 | | - | |
| 18 | + | |
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
| |||
0 commit comments