Android - print full exception backtrace to log

I have a try/catch block that throws an exception and I would like to see information about the exception in the Android device log.

I read the log of the mobile device with this command from my development computer:

/home/dan/android-sdk-linux_x86/tools/adb shell logcat

I tried this first:

try {
    // code buggy code
} catch (Exception e)
{
    e.printStackTrace();
}

but that doesn't print anything to the log. That's a pity because it would have helped a lot.

The best I have achieved is:

try {
    // code buggy code
} catch (Exception e)
{
    Log.e("MYAPP", "exception: " + e.getMessage());             
    Log.e("MYAPP", "exception: " + e.toString());
}

Better than nothing but not very satisfying.

Do you know how to print the full backtrace to the log?

Thanks.


Solution 1:

try {
    // code that might throw an exception
} catch (Exception e) {
    Log.e("MYAPP", "exception", e);
}

More Explicitly with Further Info

(Since this is the oldest question about this.)

The three-argument Android log methods will print the stack trace for an Exception that is provided as the third parameter. For example

Log.d(String tag, String msg, Throwable tr)

where tr is the Exception.

According to this comment those Log methods "use the getStackTraceString() method ... behind the scenes" to do that.

Solution 2:

This helper function also works nice since Exception is also a Throwable.

    try{
        //bugtastic code here
    }
    catch (Exception e)
    {
         Log.e(TAG, "Exception: "+Log.getStackTraceString(e));
    }