A library I'm using in Android Studio is sending verbose messages at the Info level that I wish to exclude from Logcat, but I need to see messages at the Warning and Error levels.
09-16 21:45:54.430 6847-7125/com.aawhere.homeaware I/cmusphinx﹕ 2.30
09-16 21:45:54.430 6847-7125/com.aawhere.homeaware I/cmusphinx﹕ >
09-16 21:45:54.437 6847-7125/com.aawhere.homeaware I/cmusphinx﹕ INFO: fsg_search.c(843): 116 frames, 3674 HMMs (31/fr), 9363 senones (80/fr), 464 history entries (4/fr)
09-16 21:45:54.441 6847-6847/com.aawhere.homeaware E/cmusphinx﹕ ERROR: "fsg_search.c", line 913: Final result does not match the grammar in fr
Excluding an entire Tag is already answered, but that excludes all levels.
The above filter excludes all log entries shown above. The desired result is:
09-16 21:45:54.441 6847-6847/com.aawhere.homeaware E/cmusphinx﹕ ERROR: "fsg_search.c", line 913: Final result does not match the grammar in fr
How can I exclude only Info level log entries for cmusphinx tagged log entries?