I see code like this in Android samples all the time?
try { ... }
catch (Exception e) {
Log.e("Error", e.getMessage());
}
What does Log.e actually do on a physical device?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It goes to the system log, which devs can access through the SDK tools, through
adb logcator which you can access with apps like aLogcat. Debug log statements are generally removed by Android’s default app release build process.