Jelajahi Sumber

Silence non-rust team not found errors

Mark Rousskov 2 tahun lalu
induk
melakukan
6f81f42a3e
1 mengubah file dengan 8 tambahan dan 1 penghapusan
  1. 8 1
      src/handlers/notification.rs

+ 8 - 1
src/handlers/notification.rs

@@ -151,7 +151,14 @@ async fn id_from_user(
         let team = match github::get_team(&ctx.github, team).await {
             Ok(Some(team)) => team,
             Ok(None) => {
-                log::error!("team ping ({}) failed to resolve to a known team", login);
+                // If the team is in rust-lang*, then this is probably an error (potentially user
+                // error, but should be investigated). Otherwise it's probably not going to be in
+                // the team repository so isn't actually an error.
+                if login.starts_with("rust") {
+                    log::error!("team ping ({}) failed to resolve to a known team", login);
+                } else {
+                    log::info!("team ping ({}) failed to resolve to a known team", login);
+                }
                 return Ok(None);
             }
             Err(err) => {