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

You are probably using a HttpUrlConnection or a HttpsUrlConnection. Maybe you can find out which class is logging by calling getClass() on the corresponding connection and turn it off with the Logger.getLogger("...").setLevel(Level.OFF);

See also Enable logging for JDK class programmatically

Tags:

Android

Logcat