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

Commit 32a90666 authored by Adam Lesinski's avatar Adam Lesinski Committed by The Android Automerger
Browse files

BatteryStats: include mobile radio active count and unknown time in checkin

These are important values to help diagnose modem related wakeup issues.

Bug:22803686
Bug:22857991
Change-Id: Ie0164ebd194567bc10d1165d671a583674a39829
parent 6ab0f7c2
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -2615,7 +2615,9 @@ public abstract class BatteryStats implements Parcelable {
                getMobileRadioActiveAdjustedTime(which) / 1000, interactiveTime / 1000,
                powerSaveModeEnabledTime / 1000, connChanges, deviceIdleModeEnabledTime / 1000,
                getDeviceIdleModeEnabledCount(which), deviceIdlingTime / 1000,
                getDeviceIdlingCount(which));
                getDeviceIdlingCount(which),
                getMobileRadioActiveCount(which),
                getMobileRadioActiveUnknownTime(which) / 1000);
        
        // Dump screen brightness stats
        Object[] args = new Object[NUM_SCREEN_BRIGHTNESS_BINS];