NSLog(@"Your message here");
…should do it.
To include data from variables you can use string formatting, e.g:
NSLog(@"Value of string is %@", myNSString);
There are a bunch of different string format specifiers, you can look at them here: https://developer.apple.com/library/content/documentation/Cocoa/Conceptual/Strings/Articles/formatSpecifiers.html