1

I need to export the log that my application create, there is a way to do that?

or at least there is a way to get all the log written by my application?

edit: i need to do that directly on my application.

Edit: solved using this guide
http://www.helloandroid.com/tutorials/reading-logs-programatically

frenk91
  • 919
  • 1
  • 15
  • 30

1 Answers1

0

If you use are using a linux machine you can run something like this

adb logcat org.myorg.myapp > LOG or adb logcat | grep org.myorg > LOG

GNUton
  • 1,129
  • 8
  • 7