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

Commit e47c333e authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Log.wtf -> Slog.wtf to avoid crash for BLOCK_MUTABLE_IMPLICIT_PENDING_INTENT"

parents 74effb01 68b420ff
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -57,6 +57,7 @@ import android.util.AndroidException;
import android.util.ArraySet;
import android.util.ArraySet;
import android.util.Log;
import android.util.Log;
import android.util.Pair;
import android.util.Pair;
import android.util.Slog;
import android.util.proto.ProtoOutputStream;
import android.util.proto.ProtoOutputStream;


import com.android.internal.annotations.GuardedBy;
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"
                        + " PendingIntent, use FLAG_NO_CREATE, however, to create a"
                        + " new PendingIntent with an implicit Intent use"
                        + " new PendingIntent with an implicit Intent use"
                        + " FLAG_IMMUTABLE.";
                        + " FLAG_IMMUTABLE.";
                Log.wtfStack(TAG, msg);
                Slog.wtfStack(TAG, msg);
            } else {
            } else {
                String msg = "New mutable implicit PendingIntent: pkg=" + packageName
                String msg = "New mutable implicit PendingIntent: pkg=" + packageName
                        + ", action=" + intent.getAction()
                        + ", action=" + intent.getAction()