Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How long are LogCat entries kept in memory?

After what time are LogCat logs erased from phone's memory?

like image 750
alex Avatar asked Sep 03 '12 07:09

alex


1 Answers

It doesn't depend on time, but on the memory used.

You can know the size limit by using adb logcat -g (which usually returns a value between 64Kb and 512Kb).

like image 59
Dalmas Avatar answered Sep 21 '22 08:09

Dalmas