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

Commit 1cc1d13d authored by Joe Onorato's avatar Joe Onorato
Browse files

Demote the log in ProcessState.ensureNotDead from a wtf to a warning.

It's raising alarm bells but there isn't much we can do without a lot
of rewriting inside the ActivityManager.  The only consequence is stats
that are off by a little bit.

Bug: 28581070
Change-Id: If51568c3a708a907ceef6452e7d45599a57454f7
parent 22cfef38
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -277,7 +277,7 @@ public final class ProcessState {
        if (!mDead) {
            return;
        }
        Slog.wtfStack(TAG, "ProcessState dead: name=" + mName
        Slog.w(TAG, "ProcessState dead: name=" + mName
                + " pkg=" + mPackage + " uid=" + mUid + " common.name=" + mCommonProcess.mName);
    }