I use this way to get the logcat that is recorded using the Appium’s process
List<LogEntry> logEntries = driver.manage().logs().get("logcat").getAll();
I can observe that the maximum logcat size I could get from the Appium is around 1.8MB
I have tried to increase the logcat buffer size by using this adb command
adb logcat -G 10MB
This is the output
I can get more than 2MB of logcat if I use adb logcat manually, but the Appium could not generate a logcat that exceeds 2MB.
This is my driver initialization
Appium version: 2.11.3
Uiautomator2 driver version: [email protected]
Please help on this, your help is really appreciated.