在cmd中添加过滤器以记录输出

时间:2013-05-12 18:12:41

标签: android adb logcat android-logcat

我正在使用

  

adb -s [deviceId] logcat

将设备的日志输出打印到cmd。但现在我想在显示的输出中添加TAG过滤器。我怎么能这样做?

2 个答案:

答案 0 :(得分:0)

使用-s选项。

          adb logcat -s MyActivity 

从链接@ How to filter Android logcat by application?

中提取

有关选项列表,请查看以下链接

http://developer.android.com/tools/help/logcat.html

对于标记,请检查以下链接

http://developer.android.com/reference/android/util/Log.html

答案 1 :(得分:0)

试试这个:

  

adb logcat | findstr MyActivity

在Windows中,findstr是'grep'。 过滤你想要的任何东西。