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