tags:

views:

79

answers:

1

How can I empty 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.

+3  A: 
adb logcat -c

From: http://developer.android.com/guide/developing/tools/adb.html#logcatoptions

Michael Burr
Thanks. That is exactly what I was looking for. I was trying find the options from the command line help.
J Andy