[Dock Defend] Include the current overheated status in the battery dump.

Bug: 255625888
Test: dumped BatteryControllerImpl and verified overheated is present
Change-Id: Ifaf7630486b9f692eb9968f637bd14fba92ce6cd
This commit is contained in:
Caitlin Shkuratov
2022-11-15 16:42:39 +00:00
parent b3ac32a083
commit 8cff8b4daa

View File

@@ -156,6 +156,7 @@ public class BatteryControllerImpl extends BroadcastReceiver implements BatteryC
pw.print(" mPluggedIn="); pw.println(mPluggedIn);
pw.print(" mCharging="); pw.println(mCharging);
pw.print(" mCharged="); pw.println(mCharged);
pw.print(" mIsOverheated="); pw.println(mIsOverheated);
pw.print(" mPowerSave="); pw.println(mPowerSave);
pw.print(" mStateUnknown="); pw.println(mStateUnknown);
}