How to empty (clear) the logcat buffer in Android

2019-01-21 11:42发布

This question already has an answer here:

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.

4条回答
爱情/是我丢掉的垃圾
2楼-- · 2019-01-21 12:20
adb logcat -c

Logcat options are documented here: http://developer.android.com/tools/help/logcat.html

查看更多
不美不萌又怎样
3楼-- · 2019-01-21 12:20

The following command will clear only non-rooted buffers (main, system ..etc).

adb logcat -c

If you want to clear all the buffers (like radio, kernel..etc), Please use the following commands

adb root
adb logcat -b all -c

or

adb root
adb shell logcat -b all -c 

Use the following commands to know the list of buffers device supports

adb logcat -g
adb logcat -b all -g
adb shell logcat -b all -g
查看更多
▲ chillily
4楼-- · 2019-01-21 12:24

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)

查看更多
祖国的老花朵
5楼-- · 2019-01-21 12:42

I give my solution for Mac:

  1. With your device connected to the USB port, open a terminal and go to the adb folder.
  2. Write: ./adb devices
  3. The terminal will show something like this: List of devices attached 36ac5997 device
  4. Take note of the serial number (36ac5997)
  5. Write: ./adb -s 36ac5997 to connect to the device
  6. Write: ./adb logcat

If at any time you want to clear the log, type ./adb logcat -c

查看更多
登录 后发表回答