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

Commit e2c4bcbf authored by Jing Ji's avatar Jing Ji
Browse files

Remove some system_server_wtf in proc stats tracking

As those could be valid cases

Bug: 18643865
Test: Manual
Change-Id: I3391af28d8fe59e84b27a32889a6f4a4eaa42dea
parent 327a2716
Loading
Loading
Loading
Loading
+3 −7
Original line number Diff line number Diff line
@@ -103,12 +103,8 @@ public final class AssociationState {

        @Nullable
        private SourceState getCommonSourceState(boolean createIfNeeded) {
            if (mCommonSourceState == null) {
                if (createIfNeeded) {
            if (mCommonSourceState == null && createIfNeeded) {
                mCommonSourceState = mTargetProcess.getOrCreateSourceState(mKey);
                } else {
                    Slog.wtf(TAG, "Unable to find common source state for " + mKey.mProcess);
                }
            }
            return mCommonSourceState;
        }
@@ -225,7 +221,7 @@ public final class AssociationState {
                    }
                    mActiveProcState = mProcState;
                }
            } else {
            } else if (mAssociationState != null) {
                Slog.wtf(TAG, "startActive while not tracking: " + this);
            }
            if (mAssociationState != null) {