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

Commit ac376f48 authored by Wink Saville's avatar Wink Saville
Browse files

Fix build, GsmServiceStateTracker was using old EventLog API.

Change-Id: Ib202d0ebbbb11c0ccad40445426c0c3704eb30b5
parent 88a195b5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -867,8 +867,8 @@ final class GsmServiceStateTracker extends ServiceStateTracker {
            int cid = -1;
            GsmCellLocation loc = ((GsmCellLocation)phone.getCellLocation());
            if (loc != null) cid = loc.getCid();
            EventLog.List val = new EventLog.List(cid, networkType, newNetworkType);
            EventLog.writeEvent(TelephonyEventLog.EVENT_LOG_GSM_RAT_SWITCHED, val);
            EventLog.writeEvent(TelephonyEventLog.EVENT_LOG_GSM_RAT_SWITCHED,
                    cid, networkType, newNetworkType);
            Log.d(LOG_TAG,
                    "RAT switched " + networkTypeToString(networkType) + " -> "
                    + networkTypeToString(newNetworkType) + " at cell " + cid);