I'm using a 3rd party library that currently has some bug that constantly spews out a certain error message in logcat. Sometimes this happens multiple times per second. The text is always the same. This makes debugging really hard as it:
- makes logcat scroll really fast
- makes it hard to find relevant logs
- fills up the whole logfile, deleting older logs (often just a minute old or so)
I assume this is also not good for performance but that's not the real issue.
While waiting for a fix in the library, I would like to filter out this specific error message from logcat. So that I can see everything except this one error and it's stacktrace.
Can I filter this out using Android Studio? If it is filtered, will the messages still get deleted quickly if the file is full?
I know how to disable logs using proguard. I would like to have a solution without proguard since in this development version proguard is disabled.