mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-09-01 19:02:31 +01: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:
committed by
marcbonnici
parent
20f10f51e2
commit
7cd2982b31
@@ -48,13 +48,13 @@ import android.util.Log;
|
||||
|
||||
public void start() {
|
||||
if (enabled) {
|
||||
Log.d("UX_PERF", testTag + "_start " + System.nanoTime());
|
||||
Log.d("UX_PERF", testTag + " start " + System.nanoTime());
|
||||
}
|
||||
}
|
||||
|
||||
public void stop() throws Exception {
|
||||
if (enabled) {
|
||||
Log.d("UX_PERF", testTag + "_end " + System.nanoTime());
|
||||
Log.d("UX_PERF", testTag + " end " + System.nanoTime());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Binary file not shown.
Reference in New Issue
Block a user