标签:
实时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
标签:
原文地址:http://www.cnblogs.com/miniren/p/4764150.html