I just ran into this problem, too. As a workaround I’m filtering the LogCat output with the following expression on the by Log Message field of the filter:
^(?!.*(nativeGetEnabledTags)).*$
Otherwise it is so spammed it’s almost useless.
Following Laksh suggestion, if you want to filter this always without having to always write it on the Search for messages field:
- Goto your
Logcat - In the
Saved Filterspart on the left, click on theEdit selected logcat filter(If Saved Filters is not visible then click on Display Saved Filters View in the Logcat) - There, in the by Log Message field, enter
^(?!.*(nativeGetEnabledTags)).*$.