We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da2362a commit 8a675a8Copy full SHA for 8a675a8
Classes/JSONAPI.m
@@ -158,11 +158,11 @@ - (void)inflateWithDictionary:(NSDictionary*)dictionary {
158
// Parse errors
159
if (dictionary[@"errors"]) {
160
NSMutableArray *errors = [[NSMutableArray alloc] init];
161
- NSLog(@"ERRORS - %@", dictionary[@"errors"]);
+ // NSLog(@"ERRORS - %@", dictionary[@"errors"]);
162
for (NSDictionary *data in dictionary[@"errors"]) {
163
164
JSONAPIErrorResource *resource = [[JSONAPIErrorResource alloc] initWithDictionary: data];
165
- NSLog(@"Error resource - %@", resource);
+ // NSLog(@"Error resource - %@", resource);
166
if (resource) [errors addObject:resource];
167
}
168
_errors = errors;
0 commit comments