I want to do something like this:
NSLog(@\"You got: %x\", booleanValue);
where x is the specifier. But I can\'t find one! I want to avoid:
On Swift, use String(describing: booleanValue)
Swift
String(describing: booleanValue)
For example: os_log("You got %@", log: .default, type: .debug, String(describing: booleanValue))
os_log("You got %@", log: .default, type: .debug, String(describing: booleanValue))