How can I convert use this code in Android or Java since it’s written in Objective C?
ALog(@"ERROR: Account with UserId:%@ AccountType:%d AccoundId:%d DOES NOT EXIST!",
account.userId, account.accountType, account.accountId);
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.
Well, for Android you’ll want to do something like the following:
That would appear in logcat formatted by the activity and level (info, in this case). Might look like this:
Not sure if this answers your question… take a look here for further help: http://developer.android.com/guide/developing/debugging/debugging-log.html