我在Android Studio中使用的库正在我希望从Logcat中排除的Info级别发送详细消息,但我需要在警告和错误级别查看消息。
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
排除整个代码为already answered,但不包括所有级别。
上述过滤器排除了上面显示的所有日志条目。期望的结果是:
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
如何仅为cmusphinx标记的日志条目排除信息级别日志条目?