Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
rw0x0 committed Jan 13, 2025
1 parent 0f9e401 commit 1b54a0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions iris-mpc-gpu/tests/lift.rs
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ mod lift_test {
let now = Instant::now();
let result = open(&mut party, &mut x, &mut correction, &streams);
party.synchronize_streams(&streams);
tracing::error!(
tracing::info!(
"id = {}, Open and transfer to CPU time: {:?}",
id,
now.elapsed()
Expand All @@ -221,7 +221,7 @@ mod lift_test {
for (i, (r, r_)) in izip!(&result, &real_result).enumerate() {
if r != r_ {
correct = false;
tracing::info!("id = {}, Test failed on index: {}: {} != {}", id, i, r, r_);
tracing::error!("id = {}, Test failed on index: {}: {} != {}", id, i, r, r_);
error = true;
break;
}
Expand Down

0 comments on commit 1b54a0b

Please sign in to comment.