After migrating to Swift 3, I get an error when I try and do:
self.publicDB.save(listRecord, completionHandler: { (record, error) -> Void in
if let saveError = error {
NSLog("There was an error saving the record: %@", saveError)
}...
Can someone tell me why this is and what I can do produce an output with relative ease?
The error is NSLog unavailable: variadic function unavailable
.