diff --git a/DBSObject.m b/DBSObject.m index b5bc689..e630b24 100644 --- a/DBSObject.m +++ b/DBSObject.m @@ -2,7 +2,7 @@ Project: DataBasin DBSobject.m - Copyright (C) 2010-2017 Free Software Foundation + Copyright (C) 2010-2020 Free Software Foundation Author: Riccardo Mottola @@ -103,7 +103,7 @@ - (void)dealloc - (NSString *)description { - return [NSString stringWithFormat: @"", [self name], [self sfId], [self label], [self type]]; + return [NSString stringWithFormat: @"", [self sfId], [self name], [self label], [self type]]; } /**

returns the current salesforce id, in whichever format it is currently stored.

diff --git a/DBSoap.m b/DBSoap.m index 1d59e0a..30c8856 100644 --- a/DBSoap.m +++ b/DBSoap.m @@ -720,7 +720,7 @@ - (DBSObject *)extractQueryRecord:(NSDictionary *)record [sObj setObjectProperties: propDict]; } - NSLog (@"single record: %@", record); +// NSLog (@"single record: %@", record); for (j = 0; j < [keys count]; j++) { id obj; @@ -729,7 +729,7 @@ - (DBSObject *)extractQueryRecord:(NSDictionary *)record key = [keys objectAtIndex:j]; obj = [record objectForKey: key]; - NSLog(@"analyzing %@ : %@", key, obj); +// NSLog(@"analyzing %@ : %@", key, obj); if ([key isEqualToString:@"Id"]) { value = [(NSArray *)obj objectAtIndex: 0]; @@ -805,7 +805,7 @@ - (void)extractQueryRecords:(NSArray *)records toObjects:(NSMutableArray *)objec if (records == nil || [records count] == 0) return; - NSLog(@"\n\nRecords to extract: %@\n\n", records); +// NSLog(@"\n\nRecords to extract: %@\n\n", records); [records retain]; batchSize = [records count];