Logger class reference
| NSObject | |
| LoggingProvider | |
| LoggingProvider.h | 
Overview
Defines the basic application logger.
This class implements the application wide logger. It is implemented as a singleton, so that it is easily accessible for all other classes. Note that this class is closely coupled with CommandLineParser from which it takes the verbose and debug logging levels. 
Tasks
Other
- 
          
            + sharedInstanceReturns the default shared instance of the class.
Other
- 
          
            - logMessage:type:Logs the given message to the output.
Class methods
sharedInstance
Returns the default shared instance of the class.
+ (Logger *)sharedInstance
      Declared in
LoggingProvider.h
      Instance methods
logMessage:type:
Logs the given message to the output.
- (void)logMessage:(NSString *)        message
 type:(NSString *)        type
      Parameters
- message
- The message to log. 
- type
- The type of the message. 
Declared in
LoggingProvider.h
          © 2008-2009 Tomaz Kragelj. All rights reserved. (Last updated: 2009-08-24)
      
      Back to index / hierarchy.