Logging 在Android Studio Logcat中为日志级别排除标记

Logging 在Android Studio Logcat中为日志级别排除标记,logging,android-studio,Logging,Android Studio,我在androidstudio中使用的一个库正在发送我希望从Logcat中排除的信息级别的详细消息,但我需要查看警告和错误级别的消息 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.aaw

我在androidstudio中使用的一个库正在发送我希望从Logcat中排除的信息级别的详细消息,但我需要查看警告和错误级别的消息

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
排除整个标记是,但排除所有级别

上面的过滤器排除上面显示的所有日志条目。预期的结果是:

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标记日志项的Info级别日志项?

“那么您希望进行信息调试并排除cmush?”否。我希望排除Info语句。“上图排除了您所需级别的日志。”这是您所期望的,但它会过滤掉信息和错误。“您希望所有其他级别的调试达到什么一般级别?”我只希望针对过于冗长的库。其他一切都应该保持不变。“您想从cmush的详细信息中排除吗?”是的。