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

Commit 1e844fb9 authored by Chandru S's avatar Chandru S
Browse files

Logs are too noisy and causing jank.

Bug: 416135134
Test: NA
Flag: EXEMPT bugfix
Change-Id: I1204705d9ab32dd847b8d4091f5fef245f93cda2
parent fad1742b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -229,7 +229,7 @@ public final class NotificationPanelViewController implements
        ShadeSurface, Dumpable, BrightnessMirrorShowingInteractor {

    public static final String TAG = NotificationPanelView.class.getSimpleName();
    private static final boolean DEBUG_LOGCAT = Compile.IS_DEBUG || Log.isLoggable(TAG, Log.DEBUG);
    private static final boolean DEBUG_LOGCAT = Log.isLoggable(TAG, Log.DEBUG);
    private static final boolean DEBUG_DRAWABLE = false;
    /** The parallax amount of the quick settings translation when dragging down the panel. */
    public static final float QS_PARALLAX_AMOUNT = 0.175f;
+1 −1
Original line number Diff line number Diff line
@@ -157,7 +157,7 @@ import javax.inject.Provider;
@SysUISingleton
public class NotificationStackScrollLayoutController implements Dumpable {
    private static final String TAG = "StackScrollerController";
    private static final boolean DEBUG = Compile.IS_DEBUG || Log.isLoggable(TAG, Log.DEBUG);
    private static final boolean DEBUG = Log.isLoggable(TAG, Log.DEBUG);
    private static final String HIGH_PRIORITY = "high_priority";
    /** Delay in milli-seconds before shade closes for clear all. */
    private static final int DELAY_BEFORE_SHADE_CLOSE = 200;