mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-27 10:17:18 +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;
|
Process proc = null;
|
||||||
BufferedReader br = null;
|
BufferedReader br = null;
|
||||||
try {
|
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);
|
proc = Runtime.getRuntime().exec(cmd);
|
||||||
br = new BufferedReader(new InputStreamReader(proc.getInputStream()));
|
br = new BufferedReader(new InputStreamReader(proc.getInputStream()));
|
||||||
String line;
|
String line;
|
||||||
|
|
Loading…
Reference in a new issue