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

Change-Id: I28e26738e3094c800487b423de16a8113c543f21
This commit is contained in:
Automerger Merge Worker
2020-02-27 05:55:59 +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)));