Eclipse Logcat Viewer支持各种形式的过滤规则的——Search for messages. Accepts Java regexes. Prefix with pid:, app:, tag or text: to limit scope.
1)方式一:在新建的过滤器中的by Log Tag中输入:
^(?!.*(AccessibilityNodeInfoCache)).*$
实现,不显示tag为IMGSRV的那些log信息了。
2)方式二:在输入框中输入过滤规则
tag:^(?!.*(AccessibilityNodeInfoCache)).*$
参考:
https://stackoverflow.com/questions/7889888/how-to-filter-out-a-tagname-in-eclipse-logcat-viewer