diff --git a/src/gitlab_controller.rs b/src/gitlab_controller.rs index 79fb188..2be3375 100644 --- a/src/gitlab_controller.rs +++ b/src/gitlab_controller.rs @@ -100,14 +100,14 @@ pub fn get_latest_pipelines(client: &Gitlab, project: &Project) -> Option = endpoint.query(client).unwrap_or(vec![]); if pipelines.is_empty() { warn!("No pipeline found for project {:?}.", project); return None; } else { let pipeline = pipelines.first().unwrap().to_owned(); - debug!("Found pipeline {:?} as latest pipeline for project {:?}.", + debug!("Found {:?} as latest pipeline for project {:?}.", pipeline, project); return Some(pipeline); }