Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Logcat 和 Jeff Sharkey 提供的漂亮的全彩调试脚本。但不幸的是,它被最新sdk工具的已知错误搞砸了:nativeGetEnabledTags的意外值:0过滤器^(?!。(nativeGetEnabledTags))。$ 在 Eclipse 中工作,但我不知道如何在 bash 中使用它。 干杯马库斯
只需通过管道输出脚本的输出并 grep 出有问题的日志语句。我不知道您所说的脚本,但这是我从命令行执行的操作。
adb logcat | grep -v nativeGetEnabledTags
看来这不适用于 JS 的脚本,因为它使用标准输出来确定终端宽度。如果 stdout 是 grep,那么这将不起作用。你可以通过注释掉第 28,29 和 135 行来解决这个问题,但是你失去了漂亮的换行。