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

Commit b85aecc8 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

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

Change-Id: I1fca41805a8d7b7591f6504464322a959c524835
parents 4853f5ae 23e062de
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -397,7 +397,7 @@ public class IorapWorkFlowTest {
    public LogcatTimestamp() throws Exception{
    public LogcatTimestamp() throws Exception{
      long currentTimeMillis = System.currentTimeMillis();
      long currentTimeMillis = System.currentTimeMillis();
      epochTime = String.format(
      epochTime = String.format(
          "%d.%d", currentTimeMillis/1000, currentTimeMillis%1000);
          "%d.%03d", currentTimeMillis/1000, currentTimeMillis%1000);
      Log.i(TAG, "Current logcat timestamp is " + epochTime);
      Log.i(TAG, "Current logcat timestamp is " + epochTime);
    }
    }