调整日志输出格式

调整个人名片-工会大小
This commit is contained in:
2022-11-12 15:09:49 +08:00
parent 93ac837148
commit af39c4bac0
2 changed files with 2 additions and 2 deletions

View File

@@ -31,7 +31,7 @@ public class LogUtils {
String[] exec = new String[]{"logcat", "-c"};
Runtime.getRuntime().exec(exec).waitFor();
exec = new String[]{"logcat", "-v", "-d", "time"};
exec = new String[]{"logcat", "-v", "color", "-D"};
Process process = Runtime.getRuntime().exec(exec);
BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(process.getInputStream()));