Skip to content

Instantly share code, notes, and snippets.

@ndurell
Last active August 29, 2015 14:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ndurell/11044075 to your computer and use it in GitHub Desktop.
Save ndurell/11044075 to your computer and use it in GitHub Desktop.
How to turn on logging.
//
// ExampleAppDelegate.m
// MyApp
//
//
#import "ExampleAppDelegate.h"
#import "SessionM.h"
@implementation ExampleAppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
[SessionM sharedInstance].logLevel = SMLogLevelDebug;
//TODO: put your app key in here.
SMStart(@"<YOUR_APP_KEY_HERE>");
return YES;
}
//Other normal application delegate code is ommitted for this example ....
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment