From e60e1186cc9578ac3887d138cc60da1584aac667 Mon Sep 17 00:00:00 2001 From: apiraino Date: Fri, 24 Jan 2025 14:49:37 +0100 Subject: [PATCH] Increase triagebot PR assignment logging --- src/handlers/assign.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/handlers/assign.rs b/src/handlers/assign.rs index f6cf0c03..8ccbccd6 100644 --- a/src/handlers/assign.rs +++ b/src/handlers/assign.rs @@ -781,6 +781,8 @@ async fn find_reviewer_from_names( // These are all ideas for improving the selection here. However, I'm not // sure they are really worth the effort. + log::info!("Initial list of candidates: {:?}", candidates); + // Special case user "ghost", we always skip filtering if candidates.contains("ghost") { return Ok("ghost".to_string()); @@ -798,7 +800,7 @@ async fn find_reviewer_from_names( }); } - log::debug!("Filtered list of candidates: {:?}", filtered_candidates); + log::info!("Filtered list of candidates: {:?}", filtered_candidates); Ok(filtered_candidates .into_iter()