Reputation: 6394
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.
Upvotes: 5
Views: 891
Reputation: 1270
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).*$
Upvotes: 3