Skip to content
Li-Wei Yap edited this page Mar 15, 2021 · 3 revisions

Logcat

  • ^(?!MediaPlayer) returns all Log messages except those containing MediaPlayer. (Source)

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.