How to change size of logcat buffer in Android?

前端 未结 8 519
隐瞒了意图╮
隐瞒了意图╮ 2020-12-28 13:47

I noticed that the size of the logcat buffer varies on different devices. Assuming I have root permissions on my device, is there a way to change the buffer size of the main

8条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-28 14:31

    To set logcat buffer to 16Mb for a specific Android device through adb, I used:

    adb -s 2615a1d4e3174a6e logcat -G 16M

    But you can use just:

    adb logcat -G 16M

    Or set previous buffer size with:

    adb logcat -G 256K

提交回复
热议问题