NSLog(@"text to log"); // Basic text log
NSLog(@"data: %f - %.2f", myFloat, anotherFloat); // Logging text including float numbers.
NSLog(@"data: %i", myInteger); // Logging text including integer number.
NSLog(@"data: %@", myStringOrObject); // Logging...