blob: bc2aa4cce7bc50bd6024cdd8827d6e9b6982f52a [file] [log] [blame]
#import "FineGrainedLoggingAppDelegate.h"
#import "MYLog.h"
#import "TimerOne.h"
#import "TimerTwo.h"
// Debug levels: off, error, warn, info, verbose
static const DDLogLevel ddLogLevel = DDLogLevelVerbose;
@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