mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-02-21 20:38:57 +00:00
workloads/uxperf: change message format
Do not concatenate start/stop markers to the action string with a '_', delimit them with a space instead. This will make easier to parse the message afterwards.
This commit is contained in:
parent
20f10f51e2
commit
7cd2982b31
@ -48,13 +48,13 @@ import android.util.Log;
|
|||||||
|
|
||||||
public void start() {
|
public void start() {
|
||||||
if (enabled) {
|
if (enabled) {
|
||||||
Log.d("UX_PERF", testTag + "_start " + System.nanoTime());
|
Log.d("UX_PERF", testTag + " start " + System.nanoTime());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void stop() throws Exception {
|
public void stop() throws Exception {
|
||||||
if (enabled) {
|
if (enabled) {
|
||||||
Log.d("UX_PERF", testTag + "_end " + System.nanoTime());
|
Log.d("UX_PERF", testTag + " end " + System.nanoTime());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user