分包收集 android 运行的 logcat 日志
程序员文章站
2022-09-14 08:05:29
1 # -*- coding:utf-8 -*- 2 import os 3 import time 4 from common import Common 5 comm = Common() 6 7 cmd = r'adb logcat -v time -b main -b radio -b sy... ......
1 # -*- coding:utf-8 -*- 2 import os 3 import time 4 from common import common 5 comm = common() 6 7 cmd = r'adb logcat -v time -b main -b radio -b system >' 8 for i in range(3): 9 fn = r'../run_log/logcat' + str(i) + '.log' 10 os.popen(cmd+fn) 11 pid = comm.getapppid('logcat') 12 while true: 13 fs = round(os.path.getsize(fn)/float(1024*1024),2) 14 time.sleep(1) 15 print ("当前文件的大小为:%s mb" %fs) 16 if fs >= 1: 17 kill_cmd = 'adb shell kill ' + pid 18 os.popen(kill_cmd) 19 break 20 print ("当前的日志文件为:%s" %fn) 21
推荐阅读
-
logcat命令使用方法和查看android系统日志缓冲区内容的方法
-
解决Android Studio突然不显示logcat日志的问题
-
Android studio保存logcat日志到本地的操作
-
分包收集 android 运行的 logcat 日志
-
logcat命令使用方法和查看android系统日志缓冲区内容的方法
-
Android之在linux终端执行shell脚本直接打印当前运行app的日志的实现方法
-
Android的日志系统分层与logcat使用
-
解决Android Studio突然不显示logcat日志的问题
-
Android studio保存logcat日志到本地的操作
-
教你一行命令定位Android logcat崩溃日志一闪而过的问题