[iOS device] How to get more log device

Hi all,

Currently, I have using driver.manage().logs().get("syslog").getAll(); to get device log. But max size only 10.000 log entries.
How to get full logs or get more than 10.000?

thanks,

The limit is hardcoded and cannot be bumped. You could try to get the logs in realtime instead: https://appiumpro.com/editions/55-using-mobile-execution-commands-to-continuously-stream-device-logs-with-appium

Thanks, @mykola-mokhnach,