歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux編程 >> Linux編程 >> Android過濾具體應用日志的腳本

Android過濾具體應用日志的腳本

日期:2017/3/1 9:55:01   编辑:Linux編程

最近新修改完善了一個Android腳本,貼出來和大家分享一下。

功能:按照程序(包名)過濾某一程序的日志,便於更加准確定位問題。

原理:根據報名找到進程ID,然後根據得到的進程ID過濾

代碼:

#!/usr/bin/env python
#coding:utf-8
#author:[email protected]
#This script is aimed to grep logs by application(User should input a packageName and then we look up for the process ids then separate logs by process ids).

import os
import sys

packageName=str(sys.argv[1])

command = "adb shell ps | grep %s | awk '{print $2}'"%(packageName)
p = os.popen(command)
##for some applications,there are multiple processes,so we should get all the process id
pid = p.readline().strip()
filters = pid
while(pid != ""):
pid = p.readline().strip()
if (pid != ''):
filters = filters + "|" + pid


#print 'command = %s;filters=%s'%(command, filters)
if (filters != '') :
cmd = 'adb logcat | grep --color=always -E "%s" '%(filters)
os.system(cmd)

假設上述腳本保存成logcatPkg.py 使用方法:

androidyue~/py_works (master)$ logcatPkg.py com.android.phone

結果:

E/ActivityManager( 190): 0% 268/com.android.phone: 0% user + 0% kernel / faults: 210 minor 1 major
I/klogd ( 169): [69429.226898] BATT: Charging
D/WindowManager( 255): MotionEvent obtain 1 : MotionEvent{2b0a3268 action=1 x=66.70892 y=21.861084 pressure=1.0 size=0.0}
D/WindowManager( 255): MotionEvent obtain 1 : MotionEvent{2b0a3268 action=0 x=449.95306 y=18.399263 pressure=1.0 size=0.0}
D/WindowManager( 255): MotionEvent obtain 1 : MotionEvent{2b0a3268 action=1 x=366.57278 y=231.83072 pressure=1.0 size=0.0}
D/PowerManagerService( 190): setTimeoutLocked now=69520831 timeoutOverride=-1 nextState=3 when=69526831
D/WindowManager( 255): MotionEvent obtain 1 : MotionEvent{2b0a3268 action=0 x=360.5634 y=87.862915 pressure=1.0 size=0.0}
D/WindowManager( 255): MotionEvent obtain 1 : MotionEvent{2b0a3268 action=1 x=403.3803 y=185.80405 pressure=1.0 size=0.0}
D/WindowManager( 255): MotionEvent obtain 1 : MotionEvent{2b0a3268 action=0 x=323.7559 y=58.424103 pressure=1.0 size=0.0}
D/jdwp ( 268): adbd disconnected
I/klogd ( 169): [69526.400268] [mlog] do_log_poweroncause()
D/jdwp ( 268): adbd disconnected

注意:由於是根據pid過濾,所以可能會過濾出一些數字相關的無相關信息。

更多Android相關信息見Android 專題頁面 http://www.linuxidc.com/topicnews.aspx?tid=11

Copyright © Linux教程網 All Rights Reserved