Merge "Fix inverted ANR log message" into rvc-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
aa63edd33f
@@ -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);
|
||||||
|
|||||||
Reference in New Issue
Block a user