Every time I try to use logcat to debug my android App I get this message a lot:
1
W/Trace ( 1264): Unexpected value from nativeGetEnabledTags: 0
This apparently is some kind of bug. This makes it really hard to read the logs I really care about so I am now using this command to filter all those entries:
1
adb logcat | grep -v .*nativeGetEnabledTags.*
mobile
android
debugging
java
productivity
]