Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9f053c79 authored by Jordan Liu's avatar Jordan Liu
Browse files

Add logging for isRoamIndForHomeSystem

ServiceStateTracker seems to be setting roaming=true even when the
cdma home system list means it should be false. This CL adds some
logging to better diagnose the problem.

Bug: 62721891
Test: built locally
Change-Id: I2d0bc5646ab707ffc9814a788dbd6af1dd4a615a
parent 4dbf14ac
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -2023,10 +2023,12 @@ public class ServiceStateTracker extends Handler {
                }
            }
            // no matches found against the list!
            log("isRoamIndForHomeSystem: No match found against list for roamInd=" + roamInd);
            return false;
        }

        // no system property found for the roaming indicators for home system
        log("isRoamIndForHomeSystem: No list found");
        return false;
    }