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

Commit 4d872d48 authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Increase clocks log memory" into main

parents f3a6a2ae 7b943b67
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -474,7 +474,7 @@ object KeyguardRootViewBinder {
                val transition = blueprintViewModel.currentTransition.value
                val shouldAnimate = transition != null && transition.config.type.animateNotifChanges
                if (prevTransition == transition && shouldAnimate) {
                    logger.w("Skipping; layout during transition")
                    logger.w("Skipping onNotificationContainerBoundsChanged during transition")
                    return
                }

+8 −4
Original line number Diff line number Diff line
@@ -327,7 +327,8 @@ public class LogModule {
    @SysUISingleton
    @KeyguardBlueprintLog
    public static LogBuffer provideKeyguardBlueprintLog(LogBufferFactory factory) {
        return factory.create("KeyguardBlueprintLog", 100);
        // TODO(b/389987229): Reduce back to 100
        return factory.create("KeyguardBlueprintLog", 1000);
    }

    /**
@@ -337,7 +338,8 @@ public class LogModule {
    @SysUISingleton
    @KeyguardClockLog
    public static LogBuffer provideKeyguardClockLog(LogBufferFactory factory) {
        return factory.create("KeyguardClockLog", 100);
        // TODO(b/389987229): Reduce back to 100
        return factory.create("KeyguardClockLog", 1000);
    }

    /**
@@ -347,7 +349,8 @@ public class LogModule {
    @SysUISingleton
    @KeyguardSmallClockLog
    public static LogBuffer provideKeyguardSmallClockLog(LogBufferFactory factory) {
        return factory.create("KeyguardSmallClockLog", 100);
        // TODO(b/389987229): Reduce back to 100
        return factory.create("KeyguardSmallClockLog", 1000);
    }

    /**
@@ -357,7 +360,8 @@ public class LogModule {
    @SysUISingleton
    @KeyguardLargeClockLog
    public static LogBuffer provideKeyguardLargeClockLog(LogBufferFactory factory) {
        return factory.create("KeyguardLargeClockLog", 100);
        // TODO(b/389987229): Reduce back to 100
        return factory.create("KeyguardLargeClockLog", 1000);
    }

    /**