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
try{ ... } catch (Exception e) { Log.e(e.getClass().getName(), e.getMessage(), e.getCause()); }