Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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();