[android-developers] Re: Debugging geolocations services

2009-01-20 Thread jtaylor
On Jan 20, 6:20 pm, "Faber Fedor" wrote: > I wrote some reverse geocoding, geolocation and proximity alert routines for > my little Android app.    I took my Android out with me when running errands > to test my routines; they're kinda hard to test from my couch.  Half of them > didn't work. >

[android-developers] Re: Debugging geolocations services

2009-01-20 Thread Faber Fedor
On Tue, Jan 20, 2009 at 7:48 PM, jtaylor wrote: > > Log everything with this. Then it shows up in Logcat in Eclipse (or > DDMS). So I log everything to file, take my Android out for a walk, come back home, plug it in and Eclipse/DDMS will read the log file? Cool! -- Faber Fedor Cloud Com

[android-developers] Re: Debugging geolocations services

2009-01-20 Thread Mark Murphy
> So I log everything to file, take my Android out for a walk, come back > home, plug it in and Eclipse/DDMS will read the log file? Cool! Yup. I assume there's some limit to how much logging information is held, but I don't know what that limit is. It's fairly generous, though. -- Mark Murphy

[android-developers] Re: Debugging geolocations services

2009-01-20 Thread Emmanuel
Isn't it more secure to output your log in a txt file in your SD card, so you don't have to bother with any limit ? Emmanuel http://androidblogger.blogspot.com/ On Jan 21, 2:22 am, Mark Murphy wrote: > > So I log everything to file, take my Android out for a walk, come back > > home, plug it in

[android-developers] Re: Debugging geolocations services

2009-01-20 Thread Faber Fedor
On Tue, Jan 20, 2009 at 8:25 PM, Emmanuel wrote: > > Isn't it more secure to output your log in a txt file in your SD card, > so you don't have to bother with any limit ? The traceview that was mentioned seems to do that by default. Besides, I was planning on putting my log file on the SD card