-
Notifications
You must be signed in to change notification settings - Fork 0
Logcat
Li-Wei Yap edited this page Mar 15, 2021
·
3 revisions
-
^(?!MediaPlayer)
returns all Log messages except those containingMediaPlayer
. (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.