From 769e34b4efe7d6e2f84ed33c33ca554d85bedc53 Mon Sep 17 00:00:00 2001 From: Conrad Stoll Date: Thu, 26 Jun 2014 12:30:39 -0500 Subject: [PATCH] Added some additional logging around default merge behavior --- Source/MMRecord/MMRecordMarshaler.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/MMRecord/MMRecordMarshaler.m b/Source/MMRecord/MMRecordMarshaler.m index ffc3a22..db13508 100644 --- a/Source/MMRecord/MMRecordMarshaler.m +++ b/Source/MMRecord/MMRecordMarshaler.m @@ -276,7 +276,7 @@ + (void)mergeDuplicateRecordResponseObjectDictionary:(NSDictionary *)dictionary } if ([dictionary.allKeys count] != [protoRecord.dictionary.allKeys count]) { - + [MMRecordDebugger logMessageWithDescription:@"Possible inconsistent duplicate records detected. MMRecord provided the opportunity to merge two dictionaries representing the same record, where those two dictionaries were not equal. You may override the MMRecordMarshaler mergeDuplicateRecordResponseObjectDictionary:withExistingProtoRecord: method to deal with this issue if it becomes a problem. This is not expected behavior and may be due to an response issue."]; } }