My question is simple. In Android app, when we write
Log.d(“TAG”,”log message”);
and run this app on device, where does this log goes? We can see this log in logcat in Eclipse.
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.
The log is saved on the device, sommewhere. You can access it with ‘adb logcat’ commands in adb.
Note that, when publishing the app, you should not log debug messages. Errors only.