We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a512da6 commit a27979cCopy full SHA for a27979c
crates/pgt_fs/src/fs.rs
@@ -86,9 +86,20 @@ pub trait FileSystem: Send + Sync + RefUnwindSafe {
86
loop {
87
let mut errors: Vec<FileSystemDiagnostic> = vec![];
88
89
+ tracing::info!(
90
+ "Searching for files {:?} in directory {:?}",
91
+ file_names,
92
+ curret_search_dir.display()
93
+ );
94
+
95
// Iterate all possible file names
96
for file_name in file_names {
97
let file_path = curret_search_dir.join(file_name);
98
+ println!(
99
+ "Checking for file: {:?} in directory: {:?}",
100
+ file_path,
101
102
103
match self.read_file_from_path(&file_path) {
104
Ok(content) => {
105
if is_searching_in_parent_dir {
0 commit comments