@@ -227,7 +227,7 @@ impl WorkspaceGraph {
227227
228228 // finally filter out nodes we don't want to show but connect edges
229229 if !only_show_crates. is_empty ( ) {
230- log:: info !( "Filtering to only show crates: {only_show_crates:?}" ) ;
230+ log:: debug !( "Filtering to only show crates: {only_show_crates:?}" ) ;
231231 let only_show_crates: HashSet < _ > = only_show_crates
232232 . into_iter ( )
233233 . map ( |s| s. to_string ( ) )
@@ -237,14 +237,14 @@ impl WorkspaceGraph {
237237 . filter ( |c| !only_show_crates. contains ( & c. to_string ( ) ) )
238238 . collect ( ) ;
239239
240- log:: info !(
240+ log:: debug !(
241241 "Removing and interconnecting {} nodes, out of {}" ,
242242 to_remove. len( ) ,
243243 visualiser_graph. node_count( )
244244 ) ;
245245
246246 for n in to_remove {
247- log:: info !( "Removing node {n}" ) ;
247+ log:: debug !( "Removing node {n}" ) ;
248248 let node_index =
249249 match visualiser_graph. find_node_by_opt ( |node| node. contains ( & n. to_string ( ) ) ) {
250250 Some ( n) => n,
@@ -408,7 +408,7 @@ impl WorkspaceGraph {
408408 }
409409 }
410410
411- log:: info !( "Parsed features map: {features_map:?}" ) ;
411+ log:: debug !( "Parsed features map: {features_map:?}" ) ;
412412 self . calculate_enabled_features_and_dependencies ( features_map, false ) ;
413413 }
414414
@@ -454,7 +454,7 @@ impl WorkspaceGraph {
454454
455455 open_set. extend ( enabled_crates. keys ( ) . cloned ( ) ) ;
456456
457- log:: info !( "Starting feature calculation with open set: {open_set:?}" ) ;
457+ log:: debug !( "Starting feature calculation with open set: {open_set:?}" ) ;
458458
459459 while let Some ( krate) = open_set. pop_front ( ) {
460460 log:: trace!( "Processing crate `{krate}`" ) ;
0 commit comments