Increase the limit on the size of PowerStats log element

Bug: 248188556
Test: presubmit
Change-Id: I606c59fc77cd9a3fb036eec738c4cc8adc9aa5dd
(cherry picked from commit e8c3bb04ee)
This commit is contained in:
Dmitri Plotnikov
2022-09-29 14:06:51 -07:00
parent f12d6c2894
commit 49f716eb99

View File

@@ -53,7 +53,7 @@ public class PowerStatsDataStorage {
private static class DataElement {
private static final int LENGTH_FIELD_WIDTH = 4;
private static final int MAX_DATA_ELEMENT_SIZE = 1000;
private static final int MAX_DATA_ELEMENT_SIZE = 32768;
private byte[] mData;