Skip to content

Commit edc6ad8

Browse files
authored
Merge pull request #1890 from apiraino/increase-logging
Increase triagebot PR assignment logging
2 parents d11d555 + e60e118 commit edc6ad8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/handlers/assign.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -781,6 +781,8 @@ async fn find_reviewer_from_names(
781781
// These are all ideas for improving the selection here. However, I'm not
782782
// sure they are really worth the effort.
783783

784+
log::info!("Initial list of candidates: {:?}", candidates);
785+
784786
// Special case user "ghost", we always skip filtering
785787
if candidates.contains("ghost") {
786788
return Ok("ghost".to_string());
@@ -798,7 +800,7 @@ async fn find_reviewer_from_names(
798800
});
799801
}
800802

801-
log::debug!("Filtered list of candidates: {:?}", filtered_candidates);
803+
log::info!("Filtered list of candidates: {:?}", filtered_candidates);
802804

803805
Ok(filtered_candidates
804806
.into_iter()

0 commit comments

Comments
 (0)