如何隐藏,删除,过滤Eclipse for Eclipse中的logcat中的日志

时间:2013-04-15 14:08:41

标签: android eclipse logcat

我在Eclipse中为Eclipse隐藏日志时遇到了一些困难(可能是因为主题的关键字),这就是我创建一个的原因。这是我发现的帖子:(看看ZoFreX的答案,最简单的)

How to exclude certain messages by TAG name using Android adb logcat?

2 个答案:

答案 0 :(得分:6)

我发现最适合我的过滤器是:

^(?!.*(text_to_filter_out_here)).*$

这适用于我的经验。我有运行无限循环的线程,创建了大量与之关联的垃圾邮件日志和标签,所以我只是在text_to_filter_out_here部分放入部分日志消息,不再显示日志。

这两个也可能重复:

How can I stop admob from spamming my logcat?

How to filter out a tagname in Eclipse LogCat viewer

答案 1 :(得分:2)

似乎(暂时)没有明确的方法来隐藏一些日志(例如来自'libgps')。要隐藏标记为“tag_1”和“tag_2”的帖子,请点击绿色加号并填写“按日志标记”字段:

^(?!(tag_1|tag_2))

等等,如果你想添加一些标签来隐藏

希望这会有所帮助