Skip to content

Commit

Permalink
Added additional comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Conrad Stoll committed Jun 25, 2014
1 parent 1ba7f23 commit cdc706f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Examples/MMRecordAppDotNet/MMRecordAppDotNet/MMAppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,11 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(
[FBMMRecordTweakModel loadTweaksForManagedObjectModel:[MMDataManager sharedDataManager].managedObjectModel];
#define FBMMRecordTweakModelDefine

// You can uncomment the below methods to enable the MMJSONServer for this example project
// [MMJSONServer registerResourceName:@"posts" forPathComponent:@"posts"];
// [ADNRecord registerServerClass:[MMJSONServer class]];

// You can uncomment the below line to enable logging for this example project
// [MMRecord setLoggingLevel:MMRecordLoggingLevelDebug];

return YES;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(

sessionManager.responseSerializer = serializer;

// You can uncomment the below line to enable logging for this example project
//[MMRecord setLoggingLevel:MMRecordLoggingLevelAll];

return YES;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ @implementation MMAppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
[MMJSONPerformanceTestingServer setResultSetSize:10000];
[ADNRecord registerServerClass:[MMJSONPerformanceTestingServer class]];

// You can uncomment the below line to enable logging for this example project
//[MMRecord setLoggingLevel:MMRecordLoggingLevelAll];

return YES;
Expand Down

0 comments on commit cdc706f

Please sign in to comment.