![]() |
IOS Streaming Browser 1.0
An IOS streaming browser to stream the display to others or to a projector
|
00001 #import <Foundation/Foundation.h> 00002 #import <asl.h> // For the Apple System Log facility 00003 00004 #import "DDLog.h" 00005 00006 /** 00007 * Welcome to Cocoa Lumberjack! 00008 * 00009 * The Google Code page has a wealth of documentation if you have any questions. 00010 * http://code.google.com/p/cocoalumberjack/ 00011 * 00012 * If you're new to the project you may wish to read the "Getting Started" page. 00013 * http://code.google.com/p/cocoalumberjack/wiki/GettingStarted 00014 * 00015 * 00016 * This class provides a logger for the Apple System Log facility. 00017 * 00018 * As described in the "Getting Started" page, 00019 * the traditional NSLog() function directs it's output to two places: 00020 * 00021 * - Apple System Log 00022 * - StdErr (if stderr is a TTY) so log statements show up in Xcode console 00023 * 00024 * To duplicate NSLog() functionality you can simply add this logger and a tty logger. 00025 * However, if you instead choose to use file logging (for faster performance), 00026 * you may choose to use a file logger and a tty logger. 00027 **/ 00028 00029 @interface DDASLLogger : DDAbstractLogger <DDLogger> 00030 { 00031 /** 00032 00033 **/ 00034 aslclient client; 00035 } 00036 00037 + (DDASLLogger *)sharedInstance; 00038 00039 // Inherited from DDAbstractLogger 00040 00041 // - (id <DDLogFormatter>)logFormatter; 00042 // - (void)setLogFormatter:(id <DDLogFormatter>)formatter; 00043 00044 @end