How do I increase the size of dev/log/main by a factor of 10? My understanding is the log has a fixed size (16K?) and rolls over when that limit is reached. I'd like to find out what the log size is currently set at and increase it by a lot.
I'm debugging an issue that occurs infrequently when the device hasn't been used for a long period of time (maybe an hour?). I've instrumented the code with log messages so I can understand what is happening when the bug occurs.
My problem is my instrumentation causes the log to roll over in about 2 minutes. I would like to increase the size of dev/log/main by a factor of 10 if possible.
adb logcat > my_log_file.logrunning isn't an option? – Kevin M Dec 29 '11 at 22:00