logcat 作为我们最常用的调试手段,相信大家都不会陌生。这里总结一下,在使用Logcat过程中,常用的一些debug技巧,目的是为了快速有效的帮助找到并解决问题。
先来看一看Logcat打印结构:
常用
logcat -v threadtime //打印出线程时间
logcat -v threadtime -s AndroidRuntime
logcat -s AcitivityManager
logcat -s PackageManager
logcat -s PowerManagerService
logcat *:w //查看warning以上的log
打印该进程的信息
logcat | grep (4594)pid
通常我们无需关注其他进程的打印,只想看到本进程出现的问题
快速定位crash
logcat -b crash
这个使用的频率非常高,可以快速的帮我们找到系统在哪里挂掉
这里再补充一条特别有效的debug技巧:
RuntimeException here = new RuntimeException("here");
here.fillInStackTrace();
Slog.i(TAG_WM, "enableScreenAfterBoot: mDisplayEnabled=" + mDisplayEnabled
+ " mForceDisplayEnabled=" + mForceDisplayEnabled
+ " mShowingBootMessages=" + mShowingBootMessages
+ " mSystemBooted=" + mSystemBooted, here);
#include <utils/CallStack.h>
android::CallStack stack;
stack.update();
android::String8 strtemp = stack.toString("");
ALOGD("\t%s", strtemp.string());
logcat -b events
查看acitity 生命周期 logcat -b events | grep -E “wm_|am_” 查看开机关键节点 logcat -b events|grep boot
dmesg
查看kernel 的打印信息 有些时候,kernel 打印,默认是关闭的,在启动参数里面设置了 quiet
init=/init console=ttyS0,115200 no_console_suspend earlycon=aml-uart,0xff803000 "\
"ramoops.pstore_en=1 ramoops.record_size=0x8000 ramoops.console_size=0x4000 raid=noautodetect quiet
shell 脚本如何调试
通常我们在开机启动的服务脚本里面的打印是不会输出的 通常的做法是通过输出到文件,然后查看文件是否存在,判断这个脚本有没有执行。
function fun_preinstall()
{
if [ ! -e /data/funsys.notfirstrun ]; then
echo "do preinstall job"
/system/bin/cmd package preinstall /vendor/preinstall
touch /data/funsys.notfirstrun
echo "preinstall ok"
fi
}
|