Max
Max

Reputation: 6394

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.

Upvotes: 5

Views: 891

Answers (1)

Akdeniz
Akdeniz

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

Related Questions