This commit is contained in:
Chris Fallin 2022-11-29 18:23:50 -08:00
parent 5a6177b613
commit 2ec2de1dfc
No known key found for this signature in database
GPG key ID: 31649E4FE65EB465

View file

@ -205,7 +205,7 @@ static SUCCESS: AtomicU64 = AtomicU64::new(0);
fn success(total: u64) {
let value = SUCCESS.fetch_add(1, Ordering::Relaxed);
if value % 1000 == 0 {
if value % 100 == 0 {
eprintln!("SUCCESS: {} / TOTAL: {}", value, total);
}
}