diff --git a/Code/CoreData/RKManagedObjectMappingOperation.m b/Code/CoreData/RKManagedObjectMappingOperation.m index dc877673..a1420ae7 100644 --- a/Code/CoreData/RKManagedObjectMappingOperation.m +++ b/Code/CoreData/RKManagedObjectMappingOperation.m @@ -79,7 +79,7 @@ } else { RKLogDebug(@"Failed to find object to connect relationship '%@' with primary key value '%@'", relationshipName, valueOfLocalPrimaryKeyAttribute); } - NSLog(@"setValue of %@ forKeyPath %@", relatedObject, relationshipName); + RKLogTrace(@"setValue of %@ forKeyPath %@", relatedObject, relationshipName); [self.destinationObject setValue:relatedObject forKeyPath:relationshipName]; } else { RKLogTrace(@"Failed to find primary key value for attribute '%@'", primaryKeyAttribute); diff --git a/Code/Network/RKRequest.m b/Code/Network/RKRequest.m index f930ab59..df6a8b70 100644 --- a/Code/Network/RKRequest.m +++ b/Code/Network/RKRequest.m @@ -815,7 +815,7 @@ RKRequestMethod RKRequestMethodTypeFromName(NSString *methodName) { NSError *error = nil; NSString* parsedValue = [parser stringFromObject:body error:&error]; - NSLog(@"parser=%@, error=%@, parsedValue=%@", parser, error, parsedValue); + RKLogTrace(@"parser=%@, error=%@, parsedValue=%@", parser, error, parsedValue); if (error == nil && parsedValue) { self.params = [RKRequestSerialization serializationWithData:[parsedValue dataUsingEncoding:NSUTF8StringEncoding] diff --git a/Code/Support/RKDirectory.m b/Code/Support/RKDirectory.m index 40892836..adbc02fd 100644 --- a/Code/Support/RKDirectory.m +++ b/Code/Support/RKDirectory.m @@ -32,7 +32,7 @@ NSError* error = nil; if(! [[NSFileManager defaultManager] createDirectoryAtPath:basePath withIntermediateDirectories:NO attributes:nil error:&error]) { - NSLog(@"%@", error); + RKLogError(@"%@", error); } } @@ -63,7 +63,7 @@ NSError* error = nil; if(![sharedFM createDirectoryAtURL:appDirectory withIntermediateDirectories:NO attributes:nil error:&error]) { - NSLog(@"%@", error); + RKLogError(@"%@", error); } } return [appDirectory path];