Skip to content
Snippets Groups Projects
Commit 67357e36 authored by Sudheer Shanka's avatar Sudheer Shanka Committed by Android (Google) Code Review
Browse files

Merge "Use correct timestamp for computing how long ago how app was started." into main

parents e7e99abe 54588e31
No related branches found
No related tags found
No related merge requests found
......@@ -511,8 +511,8 @@ class ProcessRecord implements WindowProcessListener {
pw.print(prefix); pw.print("pid="); pw.println(mPid);
pw.print(prefix); pw.print("lastActivityTime=");
TimeUtils.formatDuration(mLastActivityTime, nowUptime, pw);
pw.print(prefix); pw.print("startUptimeTime=");
TimeUtils.formatDuration(mStartElapsedTime, nowUptime, pw);
pw.print(prefix); pw.print("startUpTime=");
TimeUtils.formatDuration(mStartUptime, nowUptime, pw);
pw.print(prefix); pw.print("startElapsedTime=");
TimeUtils.formatDuration(mStartElapsedTime, nowElapsedTime, pw);
pw.println();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment