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

Commit 23e062de authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "iorap-functional-test: Add leading 0 to timestamp." into rvc-dev

parents 0e82ef5b 12b070b5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -397,7 +397,7 @@ public class IorapWorkFlowTest {
    public LogcatTimestamp() throws Exception{
      long currentTimeMillis = System.currentTimeMillis();
      epochTime = String.format(
          "%d.%d", currentTimeMillis/1000, currentTimeMillis%1000);
          "%d.%03d", currentTimeMillis/1000, currentTimeMillis%1000);
      Log.i(TAG, "Current logcat timestamp is " + epochTime);
    }