summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorDavid Lönnhager <david.l@mullvad.net>2024-01-04 10:09:59 +0100
committerDavid Lönnhager <david.l@mullvad.net>2024-01-04 10:09:59 +0100
commite232b83b0a71da0b9eaab60cffd9e64cc3e7e8c3 (patch)
tree654e34bc443b4bf476d08e6fb42b91b46a2a94a4
parent13855cbf6ad5833f24928499c63e7c4590a3a571 (diff)
parentc12f84fec75c2ed7daff15998d221ce53b9c40d3 (diff)
downloadmullvadvpn-e232b83b0a71da0b9eaab60cffd9e64cc3e7e8c3.tar.xz
mullvadvpn-e232b83b0a71da0b9eaab60cffd9e64cc3e7e8c3.zip
Merge branch 'remove-geoip-log'
-rw-r--r--mullvad-daemon/src/geoip.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/mullvad-daemon/src/geoip.rs b/mullvad-daemon/src/geoip.rs
index 3874e206b8..3f357abc3e 100644
--- a/mullvad-daemon/src/geoip.rs
+++ b/mullvad-daemon/src/geoip.rs
@@ -127,7 +127,6 @@ async fn send_location_request(
if use_ipv6 {
let uri_v6 = format!("https://ipv6.{}/json", *MULLVAD_CONNCHECK_HOST);
let location = send_location_request_internal(&uri_v6, v6_sender).await;
- log::warn!("{location:?}");
Some(location.map(GeoIpLocation::from))
} else {
None