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

Commit 06930c9e authored by Evan Laird's avatar Evan Laird Committed by Android (Google) Code Review
Browse files

Merge "[Status bar] Reduce length of BatteryController log" into main

parents c1519519 1c9ae200
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -213,12 +213,11 @@ public interface StatusBarPolicyModule {
        return networkController.getDataSaverController();
    }

    /** Provides a log bufffer for BatteryControllerImpl */
    /** Provides a log buffer for BatteryControllerImpl */
    @Provides
    @SysUISingleton
    @BatteryControllerLog
    //TODO(b/300147438): reduce the size of this log buffer
    static LogBuffer provideBatteryControllerLog(LogBufferFactory factory) {
        return factory.create(BatteryControllerLogger.TAG, 300);
        return factory.create(BatteryControllerLogger.TAG, 30);
    }
}