How can I get the equivalent of a printStackTrace in android? I know I can log an error, by passing in a tag name and a String to the logging method, but that just gives me a nu
The data is still printed to the DDMS logs with
e.printStackTrace();
You can also use
Log.e("Tag", "Description", e);
which will print the logs as well. DDMS is located under android-sdk/tools/ddms and logs will be shown in the bottom pane on launch.