92
votes

When I execute the command

adb logcat

while running the android emulator, all of the old logs blow past and so I figure they are stored in a file somewhere. Is there a command I can run to clear the logs and start fresh? If not, is there some other way to do this?

4
Instead of clearing the log - just apply the timestamp filter stackoverflow.com/q/45416946/1778421Alex P.

4 Answers

18
votes
adb logcat -c 

didn't do it for me

adb logcat -b all -c

worked

4
votes

Dup of How to empty (clear) the logcat buffer in Android

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 logcat -b all -c

or

adb root
adb shell logcat -b all -c 
2
votes

For me, adb logcat -c was not working and was giving following error :

failed to clear the 'main' log

For this, I first did :

adb shell

Than I did :

logcat -c

then exit the shell. This way I was able to clear logcat when same was not getting cleared from adb logcat -c