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

Commit 7b943b67 authored by Hawkwood Glazier's avatar Hawkwood Glazier
Browse files

Increase clocks log memory

Test: N/A
Bug: 389987229
Flag: NONE Logging only
Change-Id: I3d8ecc4a9dbda25f4ae1fdf881b5436a61b50a1a
parent 5aedb9f4
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);
    }

    /**