From c12f84fec75c2ed7daff15998d221ce53b9c40d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20L=C3=B6nnhager?= Date: Thu, 4 Jan 2024 10:03:55 +0100 Subject: [PATCH] Remove debug logging for geoip --- mullvad-daemon/src/geoip.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/mullvad-daemon/src/geoip.rs b/mullvad-daemon/src/geoip.rs index 3874e206b86a..3f357abc3e02 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