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 de
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)); }