From 3e92ce260bda2e286dfbe6579e5b3276462d0ba6 Mon Sep 17 00:00:00 2001 From: frieddeeu Date: Thu, 25 Sep 2025 05:38:49 -0400 Subject: [PATCH] fix(geolocation): remove logging of priority (#3002) --- plugins/geolocation/android/src/main/java/Geolocation.kt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/plugins/geolocation/android/src/main/java/Geolocation.kt b/plugins/geolocation/android/src/main/java/Geolocation.kt index b16a44825..96bcf042b 100644 --- a/plugins/geolocation/android/src/main/java/Geolocation.kt +++ b/plugins/geolocation/android/src/main/java/Geolocation.kt @@ -91,8 +91,6 @@ public class Geolocation(private val context: Context) { val lowPrio = if (networkEnabled) Priority.PRIORITY_BALANCED_POWER_ACCURACY else Priority.PRIORITY_LOW_POWER val prio = if (enableHighAccuracy) Priority.PRIORITY_HIGH_ACCURACY else lowPrio - Logger.error(prio.toString()) - val locationRequest = LocationRequest.Builder(10000) .setMaxUpdateDelayMillis(timeout) .setMinUpdateIntervalMillis(5000) @@ -145,4 +143,4 @@ public class Geolocation(private val context: Context) { return lastLoc } -} \ No newline at end of file +}