I’ve seen many posts on here advising the use of logcat. However, whenever I try and do this by replacing e.printStackTrace() with Log.e(....,....,e) I get a syntax error.
So how do you write out Log.e(....,....,e)?
Thanks!
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.
You can use
or
Where
TAGis a String you can define yourself. Usually this is the same in all messages, so you can filter the messages on this tag.