tags:

views:

19

answers:

1

While debugging, Log.d() or Log.e() methods come to LogCat, but how do I capture the runtime error or trace log on the Android device when it is not connected to the development environment ?

A: 

It is not saved in your android device when adb is not connected to the developent environment, but you can save your runtime logs in a file

alishan
yeah.. but that is not what I want to do..
Ramp