Merge "Fix the argument list to logcat from am instrument" into sc-dev

This commit is contained in:
Jing Ji
2021-05-10 18:02:43 +00:00
committed by Android (Google) Code Review

View File

@@ -555,7 +555,7 @@ public class Instrument {
// Start the process
final Process process = new ProcessBuilder()
.command("logcat", "-d", "-v threadtime,uid", "-T", timestamp)
.command("logcat", "-d", "-v", "threadtime,uid", "-T", timestamp)
.start();
// Nothing to write. Don't let the command accidentally block.