adb logcat
命令允许您查看 Android 设备或模拟器上的日志。要过滤日志,您可以使用 -s
或 --stderr
选项与 tag:priority
参数组合。
以下是过滤日志的示例:
adb logcat MyApp:V
adb logcat MyApp:E
adb logcat MyApp:W
adb logcat MyApp:I
adb logcat MyApp:D
adb logcat MyApp:A
您还可以使用 -d
或 --dump
选项将日志输出到文件,然后使用文本编辑器或命令行工具(如 grep
)过滤日志。例如,将日志输出到名为 “logcat_output.txt” 的文件:
adb logcat -d > logcat_output.txt
然后,使用 grep
过滤包含特定文本的日志行:
grep "MyApp" logcat_output.txt
这将显示包含 “MyApp” 文本的日志行。