summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorSebastian Holmin <sebastian.holmin@mullvad.net>2025-01-22 15:00:19 +0100
committerSebastian Holmin <sebastian.holmin@mullvad.net>2025-01-22 15:01:41 +0100
commitfe189f19fa6a2af01493c98ddaf123e464724908 (patch)
treee729d374f65167a5720c879254e644b50f73cf1d /test
parent42f5157ade7dba7fc171b69fb0e7163372304b8f (diff)
downloadmullvadvpn-fe189f19fa6a2af01493c98ddaf123e464724908.tar.xz
mullvadvpn-fe189f19fa6a2af01493c98ddaf123e464724908.zip
Lower verbosity of logs
Diffstat (limited to 'test')
-rw-r--r--test/test-manager/src/tests/helpers.rs4
-rw-r--r--test/test-manager/src/tests/mod.rs4
2 files changed, 4 insertions, 4 deletions
diff --git a/test/test-manager/src/tests/helpers.rs b/test/test-manager/src/tests/helpers.rs
index 78a7cfacdf..a63ff928b9 100644
--- a/test/test-manager/src/tests/helpers.rs
+++ b/test/test-manager/src/tests/helpers.rs
@@ -460,7 +460,7 @@ pub async fn connect_and_wait(
}
pub async fn disconnect_and_wait(mullvad_client: &mut MullvadProxyClient) -> Result<(), Error> {
- log::debug!("Disconnecting");
+ log::trace!("Disconnecting");
mullvad_client.disconnect_tunnel().await?;
wait_for_tunnel_state(mullvad_client.clone(), |state| {
@@ -468,7 +468,7 @@ pub async fn disconnect_and_wait(mullvad_client: &mut MullvadProxyClient) -> Res
})
.await?;
- log::debug!("Disconnected");
+ log::trace!("Disconnected");
Ok(())
}
diff --git a/test/test-manager/src/tests/mod.rs b/test/test-manager/src/tests/mod.rs
index f18e8d1239..19d305a8a3 100644
--- a/test/test-manager/src/tests/mod.rs
+++ b/test/test-manager/src/tests/mod.rs
@@ -183,7 +183,7 @@ pub async fn set_test_location(
const CUSTOM_LIST_NAME_MAX_SIZE: usize = 30;
let mut custom_list_name = test.name.to_string();
custom_list_name.truncate(CUSTOM_LIST_NAME_MAX_SIZE);
- log::debug!("Creating custom list {custom_list_name} with locations '{locations:?}'");
+ log::debug!("Creating custom list `{custom_list_name}` with locations '{locations:?}'");
let list_id = mullvad_client
.create_custom_list(custom_list_name.clone())
@@ -196,7 +196,7 @@ pub async fn set_test_location(
custom_list.locations.insert(location);
}
mullvad_client.update_custom_list(custom_list).await?;
- log::debug!("Added custom list");
+ log::trace!("Added custom list");
set_location(mullvad_client, LocationConstraint::CustomList { list_id })
.await