Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android disable "SignalStrength", etc to log in LogCat

I get too much info on one phone with Android 4.0 in logcat

Much more on all other models. I get every 1-3 second

StatusBar.NetworkController SignalStrength wpa_supplicant

Is there way tell android to not log wireless settings every second? Other phones do not do that.

like image 692
Max Avatar asked Oct 22 '22 21:10

Max


1 Answers

If those logs, you want to exclude, have distinctive TAG, you can exclude them by using regex like this in Eclipse Logcat:

^(?!TAG_TO_EXCLUDE).*$
like image 53
Akdeniz Avatar answered Oct 27 '22 11:10

Akdeniz