mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-26 17:57:16 +00:00
parent
9bee86ad84
commit
78cd6c8e79
1 changed files with 5 additions and 1 deletions
|
@ -107,7 +107,11 @@ public class Helper {
|
|||
Process proc = null;
|
||||
BufferedReader br = null;
|
||||
try {
|
||||
String[] cmd = new String[]{"logcat", "-d", "-v", "threadtime", TAG + ":I"};
|
||||
String[] cmd = new String[]{"logcat",
|
||||
"-d",
|
||||
"-v", "threadtime",
|
||||
"-t", "500",
|
||||
TAG + ":I"};
|
||||
proc = Runtime.getRuntime().exec(cmd);
|
||||
br = new BufferedReader(new InputStreamReader(proc.getInputStream()));
|
||||
String line;
|
||||
|
|
Loading…
Reference in a new issue