What formatter is used for boolean values?
EDIT:
Example: NSLog(@\" ??\", BOOL_VAL);, what is ?? ?
NSLog(@\" ??\", BOOL_VAL);
??
Format strings for use with NSLog and [NSString stringWithFormat] are documented here:
http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/Strings/Articles/formatSpecifiers.html
BOOL/bool/boolean are not even mentioned...