tags:

views:

24

answers:

1

If my app goes haywire in the field, what are some diagnostic resources that the app can collect at runtime? Is there a way to access all the Logger message our app generated (i.e. via Log.e())?

+1  A: 

use the command "adb logcat" to view android debug logs

peepsalot
I think he means "extracting" the log from his program, rather than from the development machine.
Cristian
right, is there a Java API equivalent for adb logcat?
zer0stimulus