From 68b420ff1e21e60e2b6c0d3f13171af88b5d1a61 Mon Sep 17 00:00:00 2001 From: Bernardo Rufino Date: Mon, 19 Dec 2022 19:53:45 +0000 Subject: [PATCH] Log.wtf -> Slog.wtf to avoid crash for BLOCK_MUTABLE_IMPLICIT_PENDING_INTENT Seems like checkin sets WTF_IS_FATAL to 1 http://google3/wireless/android/production/checkin_config/android.config;l=2566-2580;rcl=495711310, which together with ag/20580416 is breaking SUW corp flow. Bug: 263060871 Change-Id: I5f62264420bf4f1222a9e3fd94348a942f864b5a --- core/java/android/app/PendingIntent.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/java/android/app/PendingIntent.java b/core/java/android/app/PendingIntent.java index 9c33729cf9feb..512b5e08bf31f 100644 --- a/core/java/android/app/PendingIntent.java +++ b/core/java/android/app/PendingIntent.java @@ -57,6 +57,7 @@ import android.util.AndroidException; import android.util.ArraySet; import android.util.Log; import android.util.Pair; +import android.util.Slog; import android.util.proto.ProtoOutputStream; import com.android.internal.annotations.GuardedBy; @@ -427,7 +428,7 @@ public final class PendingIntent implements Parcelable { + " PendingIntent, use FLAG_NO_CREATE, however, to create a" + " new PendingIntent with an implicit Intent use" + " FLAG_IMMUTABLE."; - Log.wtfStack(TAG, msg); + Slog.wtfStack(TAG, msg); } else { String msg = "New mutable implicit PendingIntent: pkg=" + packageName + ", action=" + intent.getAction()