| #import "AppDelegate.h" | |
| #import "DDLog.h" | |
| #import "DDASLLogger.h" | |
| #import "DDTTYLogger.h" | |
| // Log levels: off, error, warn, info, verbose | |
| static const int ddLogLevel = LOG_LEVEL_VERBOSE; | |
| @implementation AppDelegate | |
| @synthesize window = _window; | |
| - (void)dealloc | |
| { | |
| [super dealloc]; | |
| } | |
| - (void)applicationDidFinishLaunching:(NSNotification *)aNotification | |
| { | |
| [DDLog addLogger:[DDASLLogger sharedInstance]]; | |
| [DDLog addLogger:[DDTTYLogger sharedInstance]]; | |
| DDLogVerbose(@"Testing"); | |
| } | |
| @end |