Merge "Increase activity exit-info timestamp resolution" into rvc-dev am: 7843e91e80 am: de06dac121

Change-Id: I732aa06cb7903191da65ed9d65a3c3e07ee1ae73
This commit is contained in:
Automerger Merge Worker
2020-02-27 05:56:04 +00:00

View File

@@ -708,7 +708,7 @@ public final class AppExitInfoTracker {
void dumpHistoryProcessExitInfo(PrintWriter pw, String packageName) {
pw.println("ACTIVITY MANAGER LRU PROCESSES (dumpsys activity exit-info)");
SimpleDateFormat sdf = new SimpleDateFormat();
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS");
synchronized (mLock) {
pw.println("Last Timestamp of Persistence Into Persistent Storage: "
+ sdf.format(new Date(mLastAppExitInfoPersistTimestamp)));