From 6011faeda5efd05fa7e012cc18ae385e2c491a5f Mon Sep 17 00:00:00 2001 From: Blake Watters Date: Tue, 27 Sep 2011 08:39:29 -0400 Subject: [PATCH] Fix naked NSLog that should be a RKLogDebug. fixes #376 --- Code/ObjectMapping/RKObjectMapper.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Code/ObjectMapping/RKObjectMapper.m b/Code/ObjectMapping/RKObjectMapper.m index 46553f30..efd82d6c 100644 --- a/Code/ObjectMapping/RKObjectMapper.m +++ b/Code/ObjectMapping/RKObjectMapper.m @@ -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:)]) {