Skip to content

Commit a27979c

Browse files
committed
progress
1 parent a512da6 commit a27979c

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

crates/pgt_fs/src/fs.rs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,20 @@ pub trait FileSystem: Send + Sync + RefUnwindSafe {
8686
loop {
8787
let mut errors: Vec<FileSystemDiagnostic> = vec![];
8888

89+
tracing::info!(
90+
"Searching for files {:?} in directory {:?}",
91+
file_names,
92+
curret_search_dir.display()
93+
);
94+
8995
// Iterate all possible file names
9096
for file_name in file_names {
9197
let file_path = curret_search_dir.join(file_name);
98+
println!(
99+
"Checking for file: {:?} in directory: {:?}",
100+
file_path,
101+
curret_search_dir.display()
102+
);
92103
match self.read_file_from_path(&file_path) {
93104
Ok(content) => {
94105
if is_searching_in_parent_dir {

0 commit comments

Comments
 (0)