TICDSLog Class Reference
Inherits from | NSObject |
Declared in | TICDSLog.h |
Overview
TICDLog
is a utility class to provide the primary logging behavior for the TICoreDataSync
framework.
To see output logged by the framework, set the verbosity greater than 0
:
[TICDSLog setVerbosity:<verbosityLevel>];
The higher the level, the more information you will see in the console. Examine the TICDSLogVerbosity
entries in TICDSTypesAndEnums.h
for specific values.
Tasks
Verbosity
-
+ verbosity
Returns the current verbosity level for logging.
-
+ setVerbosity:
Sets the verbosity level for logging.
Logging
-
+ logWithVerbosity:information:
Log some information (assuming
DEBUG
is set). -
+ logWithVerbosity:formatString:args:
Log some information (assuming
DEBUG
is set).
Class Methods
logWithVerbosity:formatString:args:
Log some information (assuming DEBUG
is set).
+ (void)logWithVerbosity:(NSInteger)someVerbosity formatString:(NSString *)formatString args:(va_list)args
Parameters
- someVerbosity
The verbosity level of this information (if the current verbosity is less than this, the information won’t be logged).
- formatString
The format string (using
NSLog()
format specifiers).
- args
A correctly started
va_list
with the arguments to substitute intoformatString
.
Declared In
TICDSLog.h
logWithVerbosity:information:
Log some information (assuming DEBUG
is set).
+ (void)logWithVerbosity:(NSInteger)someVerbosity information:(NSString *)formatString, ...
Parameters
- someVerbosity
The verbosity level of this information (if the current verbosity is less than this, the information won’t be logged).
- formatString
The format string (using
NSLog()
format specifiers).
- ...
A comma-separated list of arguments to substitute into
formatString
.
Declared In
TICDSLog.h