I'd like to examine stack traces from the last hours. I haven't found a proper logcat command. Does Android "forget" those logs?

First story:

When I find an unhandled exception in my co-workers Iphone App, he connects the iphone to his computer and reads the stack trace into x-code. X-Code also visualizes the exception in a nice way. Is there a smth. similar in Android?

link|improve this question

69% accept rate
feedback

2 Answers

up vote 1 down vote accepted

You probably won't be able to see those logs from the past hours. Imagine that your phone stores all logs, how much space will it consume in a couple of days?

So, this is what I do:

  • I'm in the autobus, and suddenly the app I'm working on crashes!
  • I'd like to see what's the logcat output to analyze it at home
  • I just launch the Android log collector app, and send myself an email with the logcat output
  • I get home, have dinner, feed the dogs and then I can start working on the logtrace I emailed hours ago.
link|improve this answer
2  
Installed. ;) Also will build code.google.com/p/acra/wiki/ACRAHowTo into my app now – OneWorld Dec 21 '10 at 14:28
Nice one! I didn't know that app. Thank you so much. – Cristian Dec 21 '10 at 16:43
Works perfect! Bugs are in the spreadsheet within seconds. – OneWorld Dec 21 '10 at 17:16
feedback

Use adb logcat, DDMS, or the DDMS perspective in Eclipse to examine LogCat and see the stack trace associated with unhandled exceptions.

link|improve this answer
Well, I far as I know I only can see the logging when the device is attached to the computer at the time of the exception. But is there a way to examine the stacktrace later? – OneWorld Dec 13 '10 at 14:07
@OneWorld: Attach your device, then use adb logcat, DDMS, or the DDMS perspective in Eclipse to examine LogCat and see the stack trace associated with unhandled exceptions. Or, use the "Android Log Collector" or similar tools. – CommonsWare Dec 13 '10 at 17:19
I'm talking about logs from the last hour(s). When I plug in my Motorola Milestone I only can see about 1 min into the past. (See update) – OneWorld Dec 21 '10 at 13:11
@OneWorld: The logcat is a 64KB ring buffer. I have had no problem with any Android device viewing those logs, however far back they go. So, the problem could be with the latest dev tools, or with your Milestone. – CommonsWare Dec 21 '10 at 14:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.