How can I view an NSError?

Viewed 41013

What's the best way to log an NSError?

- (void)checkThing:(Thing *)thing withError:(NSError *)error {
    NSLog(@"Error: %@", error);
}

Gives me a null message

3 Answers
Related