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
This commit is contained in:
Joe Onorato
2016-05-17 15:31:38 -07:00
parent 22cfef381d
commit 1cc1d13d6e

View File

@@ -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);
}