FMIceLinkILog Protocol Reference

Declared in FMIceLinkILog.h

Overview

ILog interface for loggers.

– debugWithMessage: required method

Writes a debug message to the log.
- (void)debugWithMessage:(NSString *)message

Parameters

message

The log message.

Discussion

Writes a debug message to the log.

Declared In

FMIceLinkILog.h

– debugWithMessage:ex: required method

Writes a debug message with exception to the log.
- (void)debugWithMessage:(NSString *)message ex:(NSException *)ex

Parameters

message

The log message.

ex

The exception.

Discussion

Writes a debug message with exception to the log.

Declared In

FMIceLinkILog.h

– errorWithMessage: required method

Writes a error message to the log.
- (void)errorWithMessage:(NSString *)message

Parameters

message

The log message.

Discussion

Writes a error message to the log.

Declared In

FMIceLinkILog.h

– errorWithMessage:ex: required method

Writes a error message with exception to the log.
- (void)errorWithMessage:(NSString *)message ex:(NSException *)ex

Parameters

message

The log message.

ex

The exception.

Discussion

Writes a error message with exception to the log.

Declared In

FMIceLinkILog.h

– fatalWithMessage: required method

Writes a fatal message to the log.
- (void)fatalWithMessage:(NSString *)message

Parameters

message

The log message.

Discussion

Writes a fatal message to the log.

Declared In

FMIceLinkILog.h

– fatalWithMessage:ex: required method

Writes a fatal message with exception to the log.
- (void)fatalWithMessage:(NSString *)message ex:(NSException *)ex

Parameters

message

The log message.

ex

The exception.

Discussion

Writes a fatal message with exception to the log.

Declared In

FMIceLinkILog.h

– flush required method

Ensures that all logs are written out.
- (void)flush

Discussion

Ensures that all logs are written out.

Declared In

FMIceLinkILog.h

– infoWithMessage: required method

Writes a info message to the log.
- (void)infoWithMessage:(NSString *)message

Parameters

message

The log message.

Discussion

Writes a info message to the log.

Declared In

FMIceLinkILog.h

– infoWithMessage:ex: required method

Writes an info message with exception to the log.
- (void)infoWithMessage:(NSString *)message ex:(NSException *)ex

Parameters

message

The log message.

ex

The exception.

Discussion

Writes an info message with exception to the log.

Declared In

FMIceLinkILog.h

– isDebugEnabled required method

Gets if the debug log level is enabled.
- (bool)isDebugEnabled

Discussion

Gets if the debug log level is enabled.

Declared In

FMIceLinkILog.h

– isErrorEnabled required method

Gets if the error log level is enabled.
- (bool)isErrorEnabled

Discussion

Gets if the error log level is enabled.

Declared In

FMIceLinkILog.h

– isFatalEnabled required method

Gets if the fatal log level is enabled.
- (bool)isFatalEnabled

Discussion

Gets if the fatal log level is enabled.

Declared In

FMIceLinkILog.h

– isInfoEnabled required method

Gets if the info log level is enabled.
- (bool)isInfoEnabled

Discussion

Gets if the info log level is enabled.

Declared In

FMIceLinkILog.h

– isLogEnabledWithLevel: required method

Returns true if the passed log level is enabled on this logger.
- (bool)isLogEnabledWithLevel:(FMIceLinkLogLevel)level

Parameters

level

Log level to check.

Discussion

Returns true if the passed log level is enabled on this logger.

Declared In

FMIceLinkILog.h

– isVerboseEnabled required method

Gets if the verbose log level is enabled.
- (bool)isVerboseEnabled

Discussion

Gets if the verbose log level is enabled.

Declared In

FMIceLinkILog.h

– isWarnEnabled required method

Gets if the warn log level is enabled.
- (bool)isWarnEnabled

Discussion

Gets if the warn log level is enabled.

Declared In

FMIceLinkILog.h

– logWithMessage: required method

Writes a generic message to the log.
- (void)logWithMessage:(NSString *)message

Parameters

message

The log message.

Discussion

Writes a generic message to the log.

Declared In

FMIceLinkILog.h

– tag required method

Gets the tag of the logger.
- (NSString *)tag

Discussion

Gets the tag of the logger.

Declared In

FMIceLinkILog.h

– verboseWithMessage: required method

Writes a verbose message to the log.
- (void)verboseWithMessage:(NSString *)message

Parameters

message

The log message.

Discussion

Writes a verbose message to the log.

Declared In

FMIceLinkILog.h

– verboseWithMessage:ex: required method

Writes a verbose message with exception to the log.
- (void)verboseWithMessage:(NSString *)message ex:(NSException *)ex

Parameters

message

The log message.

ex

The exception.

Discussion

Writes a verbose message with exception to the log.

Declared In

FMIceLinkILog.h

– warnWithMessage: required method

Writes a warn message to the log.
- (void)warnWithMessage:(NSString *)message

Parameters

message

The log message.

Discussion

Writes a warn message to the log.

Declared In

FMIceLinkILog.h

– warnWithMessage:ex: required method

Writes a warn message with exception to the log.
- (void)warnWithMessage:(NSString *)message ex:(NSException *)ex

Parameters

message

The log message.

ex

The exception.

Discussion

Writes a warn message with exception to the log.

Declared In

FMIceLinkILog.h