12345678910111213141516171819202122232425262728 |
- //
- // FineGrainedLoggingAppDelegate.m
- // FineGrainedLogging
- //
- // CocoaLumberjack Demos
- //
- #import "FineGrainedLoggingAppDelegate.h"
- #import "MYLog.h"
- #import "TimerOne.h"
- #import "TimerTwo.h"
- @implementation FineGrainedLoggingAppDelegate
- @synthesize window;
- - (void)applicationDidFinishLaunching:(NSNotification *)aNotification
- {
- [DDLog addLogger:[DDASLLogger sharedInstance] withLevel:DDLogLevelVerbose | LOG_FLAG_TIMERS];
- [DDLog addLogger:[DDTTYLogger sharedInstance] withLevel:DDLogLevelVerbose | LOG_FLAG_TIMERS];
-
- timerOne = [[TimerOne alloc] init];
- timerTwo = [[TimerTwo alloc] init];
- }
- @end
|