Merge "iorap-functional-test: Add leading 0 to timestamp." into rvc-dev am: 23e062deb5 am: b85aecc8d5 am: 443535c709 am: cdd1d07ca1 am: 4a1e025abd
Change-Id: I675acf89886ef8c2921d4ff51be16f23c54a2a58
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user