How do I fix whatever is causing this to flood my logcat: I/System.out﹕ (HTTPLog)-Static: isSBSettingEnabled false

You can use the regex filter to hide the log message flooding your log:

^((?!isSBSettingEnabled).)*$

You can also hide more than one offending log by using |. For example

^((?!isSBSettingEnabled|OtherLog|OtherLog2|Annoying Messages).)*$

Leave a Comment