如何清空(清除)Android 中的 logcat 缓冲区
如何清空(清除)Android 中的 logcat 缓冲区?
我从命令行使用 adb logcat 并将输出通过管道传输到文件,因为 DDMS 的缓冲区非常有限。目前,当我重新启动应用程序时(修复错误等后),logcat 缓冲区也包含上次启动的数据。即使卸载应用程序也不会清除缓冲区。到目前为止,我发现清除缓冲区的唯一方法是重新启动。这是有效的,但想知道是否有更简单的方法。
How can I empty (clear) the logcat buffer in Android?
I use adb logcat from command line and pipe the output to a file, since the DDMS has a very limited buffer. At the moment, when I restart my app (after fixing bugs etc) the logcat buffer has data from the previous launch as well. Even uninstalling the app does not clear the buffer. The only way I've found so far to clear the buffer, is reboot. This is effective, but would like to know if there's an easier way.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
Logcat 选项记录如下: http://developer.android.com/tools/help/logcat .html
Logcat options are documented here: http://developer.android.com/tools/help/logcat.html
以下命令将仅清除非根缓冲区(主缓冲区、系统缓冲区等)。
如果您想清除所有缓冲区(如无线电、内核等),请使用以下命令
或
使用以下命令了解设备支持的缓冲区列表
The following command will clear only non-rooted buffers (main, system ..etc).
If you want to clear all the buffers (like radio, kernel..etc), Please use the following commands
or
Use the following commands to know the list of buffers that device supports
对于任何想知道如何在 Eclipse 中执行此操作的人,您可以使用提供的按钮从 logCat 中删除显示的文本(图标上通常有一个红色 X)
For anyone coming to this question wondering how to do this in Eclipse, You can remove the displayed text from the logCat using the button provided (often has a red X on the icon)
我给出了适用于 Mac 的解决方案:
到 adb 文件夹。
附加设备列表
36ac5997 设备
如果您随时想要清除日志,请键入 ./adb logcat -c
I give my solution for Mac:
to the adb folder.
List of devices attached
36ac5997 device
If at any time you want to clear the log, type ./adb logcat -c