Fix naked NSLog that should be a RKLogDebug. fixes #376

This commit is contained in:
Blake Watters
2011-09-27 08:39:29 -04:00
parent 19738ff61f
commit 6011faeda5

View File

@@ -305,7 +305,7 @@
}
// 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:)]) {