Search code examples
androidlogginglogcat

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.


Solution

  • 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).*$