码迷,mamicode.com
首页 > 移动开发 > 详细

Android log

时间:2015-08-27 20:53:23      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:

实时log:

 1. 抓取应用程序的日志。

# adb logcat -b main -v threadtime > /sdcard/main.log

 2. 抓取跟 radio/telephony 相关的信息。

# adb logcat -b radio -v threadtime > /sdcard/radio.log

 3. 抓取系统事件日志,如触屏事件。

#adb logcat -b events -v threadtime > /sdcard/events.log

4. 抓取kernel log。

# adb logcat -b kernel > /sdcard/kernel.log
# adb shell dmesg > /sdcard/dmesg.log  //导出当前缓存的 kernel log
# adb shell kmsgcat   //实时查看kernel log
# adb shell cat /proc/kmsg > kernel.log

 5. 抓取 TCP/IP协议相关的日志

# adb shell tcpdump -s 10000 -w /sdcard/tcpip.pcap

 

 

状态log:

1.获取系统状态信息,如手机的内存信息、CPU信息、缓存等。

# adb shell dumpstate > /sdcard/dumpstate.log

2. 获取系统进程有关的信息。

# adb shell dumpstate

 

Android log

标签:

原文地址:http://www.cnblogs.com/miniren/p/4764150.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!