Skip to content

Commit

Permalink
Fix naked NSLog that should be a RKLogDebug. fixes RestKit#376
Browse files Browse the repository at this point in the history
  • Loading branch information
blakewatters committed Sep 27, 2011
1 parent 19738ff commit 6011fae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/ObjectMapping/RKObjectMapper.m
Expand Up @@ -305,7 +305,7 @@ - (RKObjectMappingResult*)performMapping {
}

// Allow any queued operations to complete
NSLog(@"The following operations are in the queue: %@", _operationQueue.operations);
RKLogDebug(@"The following operations are in the queue: %@", _operationQueue.operations);
[_operationQueue waitUntilAllOperationsAreFinished];

if ([self.delegate respondsToSelector:@selector(objectMapperDidFinishMapping:)]) {
Expand Down

0 comments on commit 6011fae

Please sign in to comment.