Sha256: e33af63a247262e90c644fb50a78a44477163c878295b2cc93ecf12c893a609e

Contents?: true

Size: 1.16 KB

Versions: 6

Compression:

Stored size: 1.16 KB

Contents

#import <Foundation/Foundation.h>
#import <asl.h>

#import "DDLog.h"

/**
 * Welcome to Cocoa Lumberjack!
 * 
 * The project page has a wealth of documentation if you have any questions.
 * https://github.com/CocoaLumberjack/CocoaLumberjack
 * 
 * If you're new to the project you may wish to read the "Getting Started" wiki.
 * https://github.com/CocoaLumberjack/CocoaLumberjack/wiki/GettingStarted
 * 
 * 
 * This class provides a logger for the Apple System Log facility.
 * 
 * As described in the "Getting Started" page,
 * the traditional NSLog() function directs it's output to two places:
 * 
 * - Apple System Log
 * - StdErr (if stderr is a TTY) so log statements show up in Xcode console
 * 
 * To duplicate NSLog() functionality you can simply add this logger and a tty logger.
 * However, if you instead choose to use file logging (for faster performance),
 * you may choose to use a file logger and a tty logger.
**/

@interface DDASLLogger : DDAbstractLogger <DDLogger>
{
    aslclient client;
}

+ (instancetype)sharedInstance;

// Inherited from DDAbstractLogger

// - (id <DDLogFormatter>)logFormatter;
// - (void)setLogFormatter:(id <DDLogFormatter>)formatter;

@end

Version data entries

6 entries across 2 versions & 1 rubygems

Version Path
motion-yapper-0.0.3 vendor/Pods/BuildHeaders/CocoaLumberjack/DDASLLogger.h
motion-yapper-0.0.3 vendor/Pods/CocoaLumberjack/Lumberjack/DDASLLogger.h
motion-yapper-0.0.3 vendor/Pods/Headers/CocoaLumberjack/DDASLLogger.h
motion-yapper-0.0.2 vendor/Pods/BuildHeaders/CocoaLumberjack/DDASLLogger.h
motion-yapper-0.0.2 vendor/Pods/CocoaLumberjack/Lumberjack/DDASLLogger.h
motion-yapper-0.0.2 vendor/Pods/Headers/CocoaLumberjack/DDASLLogger.h