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

Commit 4a1e025a 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:...

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

Change-Id: I62e990864de3dcf4d048463133e70b192341df9f
parents 6df95082 cdd1d07c
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);
    }