Apply Location Information Encryption
Bug: 396623241
Flag: EXEMPT bug fix
Test: Manually verified if it is encrypted on the location log(b/396623241#comment2)
Change-Id: I558e9b89f69591b06128cf4bbda942699defd925
diff --git a/src/com/android/phone/satellite/accesscontrol/SatelliteAccessController.java b/src/com/android/phone/satellite/accesscontrol/SatelliteAccessController.java
index e2a94bf..b713a2c 100644
--- a/src/com/android/phone/satellite/accesscontrol/SatelliteAccessController.java
+++ b/src/com/android/phone/satellite/accesscontrol/SatelliteAccessController.java
@@ -2213,9 +2213,9 @@
plogd(
"checkSatelliteAccessRestrictionForLocation: "
+ "checking satellite access restriction for location: lat - "
- + location.getLatitude()
+ + Rlog.pii(TAG, location.getLatitude())
+ ", long - "
- + location.getLongitude()
+ + Rlog.pii(TAG, location.getLongitude())
+ ", mS2Level - "
+ mS2Level);
SatelliteOnDeviceAccessController.LocationToken locationToken =
@@ -2267,9 +2267,9 @@
"checkSatelliteAccessRestrictionForLocation: "
+ (satelliteAllowed ? "Satellite Allowed" : "Satellite NOT Allowed")
+ " for location: lat - "
- + location.getLatitude()
+ + Rlog.pii(TAG, location.getLatitude())
+ ", long - "
- + location.getLongitude()
+ + Rlog.pii(TAG, location.getLongitude())
+ ", mS2Level - "
+ mS2Level);
Bundle bundle = new Bundle();