Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
progress
  • Loading branch information
psteinroe committed May 30, 2025
commit efe479e6121fe38860f7fca4ef8c189a9b235415
1 change: 1 addition & 0 deletions crates/pgt_fs/src/fs/memory.rs
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ impl FileSystem for MemoryFileSystem {
}
} else {
let files = self.files.0.read();
tracing::info!("files: {:?}", files);
let entry = files.get(path).ok_or_else(|| {
io::Error::new(
io::ErrorKind::NotFound,
Expand Down
3 changes: 3 additions & 0 deletions crates/pgt_workspace/src/configuration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,9 @@ fn load_config(
.map_or(PathBuf::new(), |working_directory| working_directory),
};

// REMOVE
tracing::info!("Searching for configuration files in {:?}", base_path);

// If the configuration path hint is from user and is a file path,
// we'll load it directly
if let ConfigurationPathHint::FromUser(ref config_file_path) = base_path {
Expand Down
Loading