Files
CocoaLumberjack/Demos/CustomLogLevels/CustomLogLevelsAppDelegate.m
Florian Friedrich d2cbd0aa19 Update Demos
2022-11-02 15:09:37 +01:00

34 lines
838 B
Objective-C

//
// CustomLogLevelsAppDelegate.m
// CustomLogLevels
//
// CocoaLumberjack Demos
//
#import "CustomLogLevelsAppDelegate.h"
#import "MYLog.h"
// Debug levels: off, fatal, error, warn, notice, info, debug
static const DDLogLevel ddLogLevel = LOG_LEVEL_DEBUG;
@implementation CustomLogLevelsAppDelegate
@synthesize window;
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
// since the verbose log level was undefined, we need to specify the log level for every logger
[DDLog addLogger:[DDOSLogger sharedInstance] withLevel:LOG_LEVEL_DEBUG];
[DDLog addLogger:(id<DDLogger>)[DDTTYLogger sharedInstance] withLevel:LOG_LEVEL_DEBUG];
DDLogFatal(@"Fatal");
DDLogError(@"Error");
DDLogWarn(@"Warn");
DDLogNotice(@"Notice");
DDLogInfo(@"Info");
DDLogDebug(@"Debug");
}
@end