MdxLogger¶
Superclass: NSObject
Declared In: MdxLogger.h
Introduction¶
This is a wrapper for the MDXLOG calls and is used to provide interfaces used for logging messages into the Citrix MDX Framework logging facility.
Methods¶
MdxLog_CriticalErrorFrom:withFormat:MdxLog_DetailFrom:withFormat:MdxLog_ErrorFrom:withFormat:MdxLog_InfoFrom:withFormat:MdxLog_WarningFrom:withFormat:
MdxLog_CriticalErrorFrom:withFormat:¶
+(void) MdxLog_CriticalErrorFrom: (NSString *)source withFormat:(NSString *)fmt, ...;
Parameters¶
source: A string object which describes the source of the log message.fmt: A standard format spcified string.
Discussion¶
MdxLog_CriticalErrorFrom function logs the specified message as a Critical Error.
MdxLog_DetailFrom:withFormat:¶
+(void) MdxLog_DetailFrom: (NSString *)source withFormat:(NSString *)fmt, ...;
Parameters¶
source: A string object which describes the source of the log message.fmt: A standard format spcified string.
Discussion¶
MdxLog_DetailFrom function logs the specified message as Details.
MdxLog_ErrorFrom:withFormat:¶
+(void) MdxLog_ErrorFrom: (NSString *)source withFormat:(NSString *)fmt, ...;
Parameters¶
source: A string object which describes the source of the log message.fmt: A standard format spcified string.
Discussion¶
MdxLog_ErrorFrom function logs the specified message as an Error.
MdxLog_InfoFrom:withFormat:¶
+(void) MdxLog_InfoFrom: (NSString *)source withFormat:(NSString *)fmt, ...;
Parameters¶
source: A string object which describes the source of the log message.fmt: A standard format spcified string.
Discussion¶
MdxLog_InfoFrom function logs the specified message as Information.
MdxLog_WarningFrom:withFormat:¶
+(void) MdxLog_WarningFrom: (NSString *)source withFormat:(NSString *)fmt, ...;
Parameters¶
source: A string object which describes the source of the log message.fmt: A standard format spcified string.
Discussion¶
MdxLog_WarningFrom function logs the specified message as a Warning.