From e04d0be8531ae4ab78e72811d841f5c3045e71e7 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Thu, 12 Jan 2023 14:30:53 -0800 Subject: [PATCH] Remove unneeded log messages in randomized test --- crates/collab/src/tests/randomized_integration_tests.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/crates/collab/src/tests/randomized_integration_tests.rs b/crates/collab/src/tests/randomized_integration_tests.rs index 0b6ec2367a8102b02a79659015ec349be1611d39..fd6252e78c8bf32e0a9fb414e5f9c1604a87b348 100644 --- a/crates/collab/src/tests/randomized_integration_tests.rs +++ b/crates/collab/src/tests/randomized_integration_tests.rs @@ -799,7 +799,6 @@ async fn apply_client_operation( anyhow::Ok(()) }); if detach { - log::info!("{}: detaching save request", client.username); cx.update(|cx| save.detach_and_log_err(cx)); } else { save.await?; @@ -900,7 +899,6 @@ async fn apply_client_operation( .map_err(|err| anyhow!("search request failed: {:?}", err)) }); if detach { - log::info!("{}: detaching save request", client.username); cx.update(|cx| search.detach_and_log_err(cx)); } else { search.await?;