diff --git a/ofborg/src/outpathdiff.rs b/ofborg/src/outpathdiff.rs index 94cf439..7b12b3b 100644 --- a/ofborg/src/outpathdiff.rs +++ b/ofborg/src/outpathdiff.rs @@ -95,12 +95,12 @@ impl OutPathDiff { if let Some(cur) = self.current { if let Some(orig) = self.original { for key in cur.keys() { - debug!("Checking out {}", key); + trace!("Checking out {}", key); if cur.get(key) != orig.get(key) { - debug!(" {:?} != {:?}", cur.get(key), orig.get(key)); + trace!(" {:?} != {:?}", cur.get(key), orig.get(key)); rebuild.push(key.clone()) } else { - debug!(" {:?} == {:?}", cur.get(key), orig.get(key)); + trace!(" {:?} == {:?}", cur.get(key), orig.get(key)); } } diff --git a/ofborg/src/tasks/massrebuilder.rs b/ofborg/src/tasks/massrebuilder.rs index ce46fe4..cda1167 100644 --- a/ofborg/src/tasks/massrebuilder.rs +++ b/ofborg/src/tasks/massrebuilder.rs @@ -305,7 +305,7 @@ impl worker::SimpleWorker for MassRebuildWorker { } else { overall_status.set_with_description( "Complete, with errors", - hubcaps::statuses::State::Failed + hubcaps::statuses::State::Failure ); }