I need to get a longer log history from my Android app running on the Android mobile device.
Even though my app itself does not create a lot of logs (issued via Log.d, Log.w etc), I find that all the logs roll over - apparently caused by all the logs created by Android itself, plus triggered by other apps. At best I am able to get may be an hour or so worth of logs right now.
I have maximized the log buffer size on the device (16 MB). I tried to convert all my debug logs to warnings (Log.d to Log.w) (note: this may have helped some).
I am trying to get to a day's or so worth of history - without tethering the device to a computer all the time.
Any ideas?