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

Commit de6ab752 authored by Jeff DeCew's avatar Jeff DeCew
Browse files

Convert from Log.wtf to Log.e to resolve failures.

Fixes: 401558225
Flag: TEST_ONLY
Test: atest SystemUITests
Change-Id: I8c008c69b3731f9656a1911e9a24eba057e64645
parent 721bf96c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1247,7 +1247,7 @@ public class NotificationContentView extends FrameLayout implements Notification
            final boolean isSingleLineViewPresent = mSingleLineView != null;

            if (shouldShowSingleLineView && !isSingleLineViewPresent) {
                Log.wtf(TAG, "calculateVisibleType: SingleLineView is not available!");
                Log.e(TAG, "calculateVisibleType: SingleLineView is not available!");
            }

            final int collapsedVisualType = shouldShowSingleLineView && isSingleLineViewPresent
@@ -1274,7 +1274,7 @@ public class NotificationContentView extends FrameLayout implements Notification
        final boolean shouldShowSingleLineView = mIsChildInGroup && !isGroupExpanded();
        final boolean isSingleLinePresent =  mSingleLineView != null;
        if (shouldShowSingleLineView && !isSingleLinePresent) {
            Log.wtf(TAG, "getVisualTypeForHeight: singleLineView is not available.");
            Log.e(TAG, "getVisualTypeForHeight: singleLineView is not available.");
        }

        if (!mUserExpanding && shouldShowSingleLineView && isSingleLinePresent) {