fix(geolocation): remove logging of priority (#3002)

This commit is contained in:
frieddeeu
2025-09-25 05:38:49 -04:00
committed by GitHub
parent 12da195fce
commit 3e92ce260b
@@ -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
}
}
}