[android-developers] Re: Possible to gather application logs at runtime?

2010-07-29 Thread j
Yes the circular buffer is only 64K and too small in my opinion (considering all apps write to the same buffer). On Jul 29, 2:32 pm, Mark Murphy wrote: > On Thu, Jul 29, 2010 at 2:27 PM, Jin Chiu wrote: > > Also, how big is the default logcat buffer, > > or how do I find out? > > I seem to recal

Re: [android-developers] Re: Possible to gather application logs at runtime?

2010-07-29 Thread Mark Murphy
On Thu, Jul 29, 2010 at 2:27 PM, Jin Chiu wrote: > Also, how big is the default logcat buffer, > or how do I find out? I seem to recall it is a 64K circular buffer, but I'm far from certain about that. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://c

[android-developers] Re: Possible to gather application logs at runtime?

2010-07-29 Thread Jin Chiu
The log collector app looks really interesting. I presume the logcat utility is part of the standard system image and should be available on most Android devices? Also, how big is the default logcat buffer, or how do I find out? On Jul 19, 3:03 pm, joebowbeer wrote: > The Log API writes to a smal

[android-developers] Re: Possible to gather application logs at runtime?

2010-07-19 Thread joebowbeer
The Log API writes to a small circular buffer that is shared by all apps. If you want to capture more information, consider a different route, such as java.util.logging, which by default writes to Android's Log, but additional handlers (such as file handlers) can be configured. However, beware of