To add to the current answers, you can get the failure message and the failure reason. To do that, you can do this when presented with an NSError:
NSString *message = [NSString stringWithFormat:@"%s\n%@\n%@", __PRETTY_FUNCTION__, displayRegion, [error localizedDescription], [error localizedFailureReason]];
This will create a 3 line string with the name of the method where the error occurred, the description of the error and a sentence explaining the error.
If more info is be supplied in the NSError, you can get the localizedRecoverySuggestion as well and add that to the message like so:
NSString *message = [NSString stringWithFormat:@"%s\n%@\n%@\n%@", __PRETTY_FUNCTION__, displayRegion, [error localizedDescription], [error localizedFailureReason], [error localizedRecoverySuggestion]];