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

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

Merge "Fix inverted ANR log message" into rvc-dev

parents 0350a0c4 4cd3e2f2
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -98,7 +98,7 @@ class AnrHelper {
                final long endTime = SystemClock.uptimeMillis();
                final long endTime = SystemClock.uptimeMillis();
                Slog.d(TAG, "Completed ANR of " + r.mApp.processName + " in "
                Slog.d(TAG, "Completed ANR of " + r.mApp.processName + " in "
                        + (endTime - startTime) + "ms, latency " + reportLatency
                        + (endTime - startTime) + "ms, latency " + reportLatency
                        + (onlyDumpSelf ? "ms" : "ms (expired, only dump ANR app)"));
                        + (onlyDumpSelf ? "ms (expired, only dump ANR app)" : "ms"));
            }
            }


            mRunning.set(false);
            mRunning.set(false);