From 1b54a0b3118377bda40380fa58f785e379b255ae Mon Sep 17 00:00:00 2001 From: Roman Walch <9820846+rw0x0@users.noreply.github.com> Date: Mon, 13 Jan 2025 14:31:36 +0100 Subject: [PATCH] . --- iris-mpc-gpu/tests/lift.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iris-mpc-gpu/tests/lift.rs b/iris-mpc-gpu/tests/lift.rs index ae72884b6..69c646f82 100644 --- a/iris-mpc-gpu/tests/lift.rs +++ b/iris-mpc-gpu/tests/lift.rs @@ -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() @@ -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; }