Logcat - liweiyap/narradir-android GitHub Wiki
Logcat
Regex for Logcat filter
^(?!MediaPlayer)returns all Log messages except those containingMediaPlayer. (Source)
Priority of types of Log messages
Log.e > Log.w > Log.i > Log.d > Log.v ( > assert)
- You should never compile verbose logs into your app, except during development.
- Debug logs are compiled in but stripped at runtime.
- Error, warning, and info logs are always kept.