Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 windows-7 命令提示符是否允许我为我的应用程序过滤内存 logcat 消息。
如果这是可能的,我如何过滤消息。
我试过这个 adb shell logcat | grep pid > "输出文件的路径"
提前致谢!
当您编写代码来打印日志消息时,您有日志标签,您可以使用 grep 来获取该标签。
例如,
private static final String TAG = "applog"; .... { Log.e(TAG, "this is a log"); }
要查看这些消息,请键入adb logcat | grep 'applog' 另外,如果您有多个不同的日志标签,您可以使用命令adb logcat | grep 'tagone\|tagtwo'
adb logcat | grep 'applog'
adb logcat | grep 'tagone\|tagtwo'
希望有帮助!