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

Commit c2e9378f authored by Caitlin Shkuratov's avatar Caitlin Shkuratov
Browse files

[SB] Increase size of BatteryControllerLog.

The BATTERY_CHANGED intents come in pretty frequently, so we
need a larger buffer size to get a good window of battery
events.

Bug: 433239990
Flag: EXEMPT log change
Test: Trigger some battery events, dump log
Change-Id: Ic28c23fe9442da91a460fe17c70965e3732008d5
parent 610bc9da
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -299,7 +299,7 @@ public interface StatusBarPolicyModule {
    @SysUISingleton
    @BatteryControllerLog
    static LogBuffer provideBatteryControllerLog(LogBufferFactory factory) {
        return factory.create(BatteryControllerLogger.TAG, 30);
        return factory.create(BatteryControllerLogger.TAG, 150);
    }

    /** Provides a log buffer for CastControllerImpl */