less noisy tests in CI (#25799)

This commit is contained in:
Jack May 2022-06-06 16:13:14 -07:00 committed by GitHub
parent 8caced68ce
commit 7c93504fa8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1491,7 +1491,7 @@ mod tests {
let mut batches =
to_packet_batches(&(0..1000).map(|_| test_tx()).collect::<Vec<_>>(), 128);
discard += filter.dedup_packets_and_count_discards(&mut batches, |_, _, _| ()) as usize;
debug!("{} {}", i, discard);
trace!("{} {}", i, discard);
if filter.saturated.load(Ordering::Relaxed) {
break;
}
@ -1721,7 +1721,7 @@ mod tests {
batches.iter_mut().enumerate().for_each(|(i, b)| {
b.iter_mut().enumerate().for_each(|(j, p)| {
if !p.meta.discard() {
debug!("{} {}", i, j)
trace!("{} {}", i, j)
}
})
});