What differences does exist between that two commands.
NSLog(@"Hello World!!");
and
LOG(@"Hello World!!");
NSLog does display the message to the console, but LOG doesn’t. So what is LOG for? Thanx in advance.
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.
Try to command + click the LOG() method to go to it’s definition. Probably it is a custom log method in your project.