summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorDavid Lönnhager <david.l@mullvad.net>2024-01-04 10:03:55 +0100
committerDavid Lönnhager <david.l@mullvad.net>2024-01-04 10:03:55 +0100
commitc12f84fec75c2ed7daff15998d221ce53b9c40d3 (patch)
tree654e34bc443b4bf476d08e6fb42b91b46a2a94a4
parent13855cbf6ad5833f24928499c63e7c4590a3a571 (diff)
downloadmullvadvpn-c12f84fec75c2ed7daff15998d221ce53b9c40d3.tar.xz
mullvadvpn-c12f84fec75c2ed7daff15998d221ce53b9c40d3.zip
Remove debug logging for geoip
-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