8

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

alex
  • 10,900
  • 15
  • 70
  • 100

1 Answers1

7

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).

Dalmas
  • 26,409
  • 9
  • 67
  • 80
  • 1
    FYI: You can increase the size of the log buffer by opening the Android Device: Settings -> Developer Options – Mastergalen Apr 28 '20 at 15:36