LogCat in Eclipse Android Debugging Exclusion Tag -


how create exclusion tag in eclipse. want tags beginning media omitted logcat in eclipse. because program has lot of different tags beginning media want go away. can tell want see there seems no way tell not want see.

this related how filter out tagname in eclipse logcat viewer.

in general, want use java regular expressions filter out/select particular log lines. example: ^(?!(media)).*$


Comments

Popular posts from this blog

c - ALSA programming: how to stop immediately -

c++ - How call method from Qt GUI in background worker thread using QThread -