Skip to content

Commit efe479e

Browse files
committed
progress
1 parent 9fe33c3 commit efe479e

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

crates/pgt_fs/src/fs/memory.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,7 @@ impl FileSystem for MemoryFileSystem {
162162
}
163163
} else {
164164
let files = self.files.0.read();
165+
tracing::info!("files: {:?}", files);
165166
let entry = files.get(path).ok_or_else(|| {
166167
io::Error::new(
167168
io::ErrorKind::NotFound,

crates/pgt_workspace/src/configuration.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,9 @@ fn load_config(
103103
.map_or(PathBuf::new(), |working_directory| working_directory),
104104
};
105105

106+
// REMOVE
107+
tracing::info!("Searching for configuration files in {:?}", base_path);
108+
106109
// If the configuration path hint is from user and is a file path,
107110
// we'll load it directly
108111
if let ConfigurationPathHint::FromUser(ref config_file_path) = base_path {

0 commit comments

Comments
 (0)