Here is a little help to remove from our logcat some logs we don’t want like: dalvikvm or OpenGL
All what you need is to click in top right corner of logcat, select our package name and click Edit Filter Configuration

2015-04-28_11h04_27

Then in the field called Log Tag regex You need insert this
[java]^((?!(?:dalvikvm|OpenGLRenderer)).)*$[/java] which means you don’t want any log which contains dalvivm or OpenGLRenderer. If You want add another word to ignore list just insert inside of regex

|word

For example:
[java]^((?!(?:dalvikvm|OpenGLRenderer|Word)).)*$[/java]

sorsare

By sorsare

Leave a Reply

Your email address will not be published. Required fields are marked *




Enter Captcha Here :