File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -162,6 +162,7 @@ impl FileSystem for MemoryFileSystem {
162
162
}
163
163
} else {
164
164
let files = self . files . 0 . read ( ) ;
165
+ tracing:: info!( "files: {:?}" , files) ;
165
166
let entry = files. get ( path) . ok_or_else ( || {
166
167
io:: Error :: new (
167
168
io:: ErrorKind :: NotFound ,
Original file line number Diff line number Diff line change @@ -103,6 +103,9 @@ fn load_config(
103
103
. map_or ( PathBuf :: new ( ) , |working_directory| working_directory) ,
104
104
} ;
105
105
106
+ // REMOVE
107
+ tracing:: info!( "Searching for configuration files in {:?}" , base_path) ;
108
+
106
109
// If the configuration path hint is from user and is a file path,
107
110
// we'll load it directly
108
111
if let ConfigurationPathHint :: FromUser ( ref config_file_path) = base_path {
You can’t perform that action at this time.
0 commit comments