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

Commit d373be66 authored by Jeff DeCew's avatar Jeff DeCew Committed by Android (Google) Code Review
Browse files

Merge "Convert from Log.wtf to Log.e to resolve failures." into main

parents cb925aeb de6ab752
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) {