Skip to content

Commit

Permalink
fixup! Add debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Serock3 committed Nov 18, 2024
1 parent 7f791bc commit 3ef6905
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions test/test-manager/src/tests/helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1322,12 +1322,18 @@ pub mod custom_lists {
pub async fn set_default_location(
mullvad_client: &mut MullvadProxyClient,
) -> anyhow::Result<()> {
dbg!(mullvad_client.get_settings().await?);
log::warn!(
"Settings pre set_default_location {:#?}",
mullvad_client.get_settings().await?
);
let relay_query = dbg!(get_custom_list_location_query(DEFAULT_LIST));
apply_settings_from_relay_query(mullvad_client, relay_query)
.await
.context("Failed to apply default custom list location")?;
dbg!(mullvad_client.get_settings().await?);
log::warn!(
"Settings post set_default_location {:#?}",
mullvad_client.get_settings().await?
);
Ok(())
}

Expand Down

0 comments on commit 3ef6905

Please sign in to comment.