Skip to content
Snippets Groups Projects
Commit 5dd70263 authored by ordian's avatar ordian Committed by GitHub
Browse files

orchestra: hide subsystem cycle warnings by default (#6047)

parent fc8d1765
No related merge requests found
......@@ -119,11 +119,11 @@ impl<'a> ConnectionGraph<'a> {
}
}));
match sccs.len() {
0 => println!("✅ Found no strongly connected components, hence no cycles exist"),
1 => println!(
0 => eprintln!("✅ Found no strongly connected components, hence no cycles exist"),
1 => eprintln!(
"⚡ Found 1 strongly connected component which includes at least one cycle"
),
n => println!(
n => eprintln!(
"⚡ Found {n} strongly connected components which includes at least one cycle each"
),
}
......@@ -169,7 +169,7 @@ impl<'a> ConnectionGraph<'a> {
}
}
let acc = String::from_iter(acc);
println!("cycle({print_idx:03}) ∈ {scc_tag}: {acc} *");
eprintln!("cycle({print_idx:03}) ∈ {scc_tag}: {acc} *");
}
sccs
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment