Disable Android debug log messages for all applications

I have a Lenovo tablet that constantly floods the log with system (Android) debugging messages, which makes it difficult to test the software on it.

Is there a way to disable all android debug log messages?

+5
source share
2 answers

You can filter log messages. In Android Studio: in the upper right corner of the Android monitor "Show only selected applications" and to the left of it, select the application that you want to debug in the drop-down menu

+1
source

When you launch the application in the bottom panel of AndroidShow only selected applicationsChoose your package name

Also, since most device logs have an information level, set the log level to errors to see if any error has occurred in your application.

0
source

Source: https://habr.com/ru/post/1243222/


All Articles