Skip to content

Commit cb694c3

Browse files
committed
Lowered logging level for NSNull collection from Warning to Debug. closes RestKit#422
1 parent 6ebe3c2 commit cb694c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Code/ObjectMapping/RKObjectMapper.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ - (BOOL)isNullCollection:(id)object {
101101

102102
if ([object respondsToSelector:@selector(countForObject:)] && [object count] > 0) {
103103
if ([object countForObject:[NSNull null]] == [object count]) {
104-
RKLogWarning(@"Found a collection containing only NSNull values, considering the collection unmappable...");
104+
RKLogDebug(@"Found a collection containing only NSNull values, considering the collection unmappable...");
105105
return YES;
106106
}
107107
}

0 commit comments

Comments
 (0)