Skip to content
This repository was archived by the owner on Mar 11, 2022. It is now read-only.

Commit 96a00f9

Browse files
committed
Fixed log ID for old android
1 parent b58256c commit 96a00f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

AndroidTest/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ task(clearDeviceLog, type: AndroidExec) {
124124
task(pullDeviceLog, type: AndroidExec) {
125125
doFirst {
126126
def logPrefix = System.getenv('TEST_ENV_NAME')
127-
if (logPrefix == null) logPrefix = UUID.randomUUID()
127+
if (logPrefix == null) logPrefix = UUID.randomUUID().toString()
128128
standardOutput = new FileOutputStream(new File(reportsDir, logPrefix + "_logcat.log"), false)
129129
}
130130
commandLine "adb","logcat", "-d", "-v", "threadtime"

0 commit comments

Comments
 (0)