Fix inverted ANR log message
To avoid misunderstanding while checking the log. Bug: 143573504 Test: CtsAppTestCases:ActivityManagerTest#testAppNotResponding Change-Id: I162aab785cd83db5db6cb33279f0b4ab0a458e94
This commit is contained in:
@@ -98,7 +98,7 @@ class AnrHelper {
|
||||
final long endTime = SystemClock.uptimeMillis();
|
||||
Slog.d(TAG, "Completed ANR of " + r.mApp.processName + " in "
|
||||
+ (endTime - startTime) + "ms, latency " + reportLatency
|
||||
+ (onlyDumpSelf ? "ms" : "ms (expired, only dump ANR app)"));
|
||||
+ (onlyDumpSelf ? "ms (expired, only dump ANR app)" : "ms"));
|
||||
}
|
||||
|
||||
mRunning.set(false);
|
||||
|
||||
Reference in New Issue
Block a user