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

Commit e0fbc3ef authored by Evan Laird's avatar Evan Laird
Browse files

Don't be so chatty, StatusIconContainer

Test: adb logcat -c; adb logcat -d | grep "StatusIconContainer";
Change-Id: I74608756f020009f371e773a6db1282df8f0ce4b
Fixes: 73257460
parent 9036a88d
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -36,6 +36,7 @@ import com.android.systemui.statusbar.stack.ViewState;
public class StatusIconContainer extends AlphaOptimizedLinearLayout {

    private static final String TAG = "StatusIconContainer";
    private static final boolean DEBUG = false;
    private static final int MAX_ICONS = 5;
    private static final int MAX_DOTS = 3;

@@ -94,7 +95,7 @@ public class StatusIconContainer extends AlphaOptimizedLinearLayout {
        int childCount = getChildCount();
        // Underflow === don't show content until that index
        int firstUnderflowIndex = -1;
        android.util.Log.d(TAG, "calculateIconTransitions: start=" + translationX);
        if (DEBUG) android.util.Log.d(TAG, "calculateIconTransitions: start=" + translationX);

        //TODO: Dots
        for (int i = childCount - 1; i >= 0; i--) {