tasks/evaluate: use error macro for error output

This commit is contained in:
Cole Helbling 2022-02-17 12:01:27 -08:00
parent 0a682f561c
commit 19c6ecb744

View file

@ -298,8 +298,8 @@ impl<'a, E: stats::SysEvents + 'static> OneEval<'a, E> {
Err(e) => { Err(e) => {
self.events.notify(Event::IssueFetchFailed); self.events.notify(Event::IssueFetchFailed);
info!("Error fetching {}!", job.pr.number); error!("Error fetching {}!", job.pr.number);
info!("E: {:?}", e); error!("E: {:?}", e);
return Ok(self.actions().skip(&job)); return Ok(self.actions().skip(&job));
} }
}; };