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

Commit 673d34b7 authored by Suprabh Shukla's avatar Suprabh Shukla
Browse files

Fix wrong duration format in logging

Test: Just a logging change. Builds, boots.

Bug: 78560047
Change-Id: I159a54ef71ef08a699c3da244d51c10009df4d6f
parent a6b1d730
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2690,7 +2690,7 @@ class AlarmManagerService extends SystemService {
            errorMsg.append("[mNextNonWakeup=");
            TimeUtils.formatDuration(mNextNonWakeup - nowElapsed, errorMsg);
            errorMsg.append(" set at ");
            TimeUtils.formatDuration(mNextNonWakeUpSetAt, errorMsg);
            TimeUtils.formatDuration(mNextNonWakeUpSetAt - nowElapsed, errorMsg);
            errorMsg.append(", mLastWakeup=");
            TimeUtils.formatDuration(mLastWakeup - nowElapsed, errorMsg);
            errorMsg.append(", timerfd_gettime=" + getNextAlarm(mNativeData, ELAPSED_REALTIME));
@@ -2701,7 +2701,7 @@ class AlarmManagerService extends SystemService {
            errorMsg.append("[mNextWakeup=");
            TimeUtils.formatDuration(mNextWakeup - nowElapsed, errorMsg);
            errorMsg.append(" set at ");
            TimeUtils.formatDuration(mNextWakeUpSetAt, errorMsg);
            TimeUtils.formatDuration(mNextWakeUpSetAt - nowElapsed, errorMsg);
            errorMsg.append(", mLastWakeup=");
            TimeUtils.formatDuration(mLastWakeup - nowElapsed, errorMsg);
            errorMsg.append(", timerfd_gettime="