We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d11d555 + e60e118 commit edc6ad8Copy full SHA for edc6ad8
src/handlers/assign.rs
@@ -781,6 +781,8 @@ async fn find_reviewer_from_names(
781
// These are all ideas for improving the selection here. However, I'm not
782
// sure they are really worth the effort.
783
784
+ log::info!("Initial list of candidates: {:?}", candidates);
785
+
786
// Special case user "ghost", we always skip filtering
787
if candidates.contains("ghost") {
788
return Ok("ghost".to_string());
@@ -798,7 +800,7 @@ async fn find_reviewer_from_names(
798
800
});
799
801
}
802
- log::debug!("Filtered list of candidates: {:?}", filtered_candidates);
803
+ log::info!("Filtered list of candidates: {:?}", filtered_candidates);
804
805
Ok(filtered_candidates
806
.into_iter()
0 commit comments