File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -175,6 +175,9 @@ impl FileSystem for MemoryFileSystem {
175
175
entry. lock_arc ( )
176
176
} ;
177
177
178
+ // REMOVE
179
+ tracing:: info!( "inner" ) ;
180
+
178
181
if options. truncate {
179
182
// Clear the buffer if the file was open with `truncate`
180
183
inner. clear ( ) ;
Original file line number Diff line number Diff line change @@ -35,6 +35,8 @@ impl LoadedConfiguration {
35
35
value : Option < ConfigurationPayload > ,
36
36
fs : & DynRef < ' _ , dyn FileSystem > ,
37
37
) -> Result < Self , WorkspaceError > {
38
+ // REMOVE
39
+ tracing:: info!( "try from payload" ) ;
38
40
let Some ( value) = value else {
39
41
return Ok ( LoadedConfiguration :: default ( ) ) ;
40
42
} ;
@@ -150,6 +152,8 @@ fn load_config(
150
152
should_error,
151
153
) ? {
152
154
let AutoSearchResult { content, file_path } = auto_search_result;
155
+ // REMOVE
156
+ tracing:: info!( "Found configuration file: {}" , file_path. display( ) ) ;
153
157
154
158
let deserialized =
155
159
serde_json:: from_str :: < PartialConfiguration > ( & strip_jsonc_comments ( & content) )
@@ -380,6 +384,12 @@ impl PartialConfigurationExt for PartialConfiguration {
380
384
. into_path_buf ( )
381
385
} ;
382
386
387
+ // REMOVE
388
+ tracing:: info!(
389
+ "Resolving extend configuration file: {}" ,
390
+ extend_configuration_file_path. display( )
391
+ ) ;
392
+
383
393
let mut file = fs
384
394
. open_with_options (
385
395
extend_configuration_file_path. as_path ( ) ,
You can’t perform that action at this time.
0 commit comments