Class org.as2lib.env.log.logger.FludgeLogger

org.as2lib.core.BasicClass
   +--org.as2lib.env.log.logger.AbstractLogger
      +--org.as2lib.env.log.logger.FludgeLogger

Implemented Interfaces

Logger

Description

FludgeLogger delegates all log messages to the appropriate methods on the Fludge class.

Using this class instead of the Fludge class in your application directly enables you to switch between almost every available Logging API without having to change the logging calls, but just the underlying configuration on startup.

Field Index

Inherited from AbstractLogger

ALL, DEBUG, ERROR, FATAL, INFO, NONE, WARNING

Method Index

new FludgeLogger()

debug(), error(), fatal(), getLevel(), info(), isDebugEnabled(), isErrorEnabled(), isFatalEnabled(), isInfoEnabled(), isWarningEnabled(), setLevel(), warning()

Inherited from BasicClass

toString()

Constructor Detail

FludgeLogger

public function FludgeLogger(Void)

Constructs a new FludgeLogger instance.

The default log level is ALL. This means all messages regardless of their level are logged.

Method Detail

setLevel

public function setLevel(level:LogLevel):Void

Sets the log level.

The log level determines which messages are logged and which are not.

A level of value null or undefined os interpreted as level ALL which is also the default level.

Parameters

levelthe new log level

getLevel

public function getLevel(Void):LogLevel

Returns the set level.

Return

the set level

isDebugEnabled

public function isDebugEnabled(Void):Boolean

Checks if this logger is enabled for debug level log messages.

Return

true if debug messages are logged

Specified By

isDebugEnabled() in org.as2lib.env.log.Logger

isInfoEnabled

public function isInfoEnabled(Void):Boolean

Checks if this logger is enabled for info level log messages.

Return

true if info messages are logged

Specified By

isInfoEnabled() in org.as2lib.env.log.Logger

isWarningEnabled

public function isWarningEnabled(Void):Boolean

Checks if this logger is enabled for warning level log messages.

Return

true if warning messages are logged

Specified By

isWarningEnabled() in org.as2lib.env.log.Logger

isErrorEnabled

public function isErrorEnabled(Void):Boolean

Checks if this logger is enabled for error level log messages.

Return

true if error messages are logged

Specified By

isErrorEnabled() in org.as2lib.env.log.Logger

isFatalEnabled

public function isFatalEnabled(Void):Boolean

Checks if this logger is enabled for fatal level log messages.

Return

true if fatal messages are logged

Specified By

isFatalEnabled() in org.as2lib.env.log.Logger

debug

public function debug(message):Void

Logs the passed-in message at debug level.

The message is only logged when the level is set to DEBUG or a level above.

Because fludge does not support the debug level the default level info is used.

Parameters

messagethe message object to log

Specified By

debug() in org.as2lib.env.log.Logger

info

public function info(message):Void

Logs the passed-in message object at info level.

The message is only logged when the level is set to INFO or a level above.

Parameters

messagethe message object to log

Specified By

info() in org.as2lib.env.log.Logger

warning

public function warning(message):Void

Logs the passed-in message object at warning level.

The message is only logged when the level is set to WARNING or a level above.

Parameters

messagethe message object to log

Specified By

warning() in org.as2lib.env.log.Logger

error

public function error(message):Void

Logs the passed-in message object at error level.

The message is only logged when the level is set to ERROR or a level above.

Parameters

messagethe message object to log

Specified By

error() in org.as2lib.env.log.Logger

fatal

public function fatal(message):Void

Logs the passed-in message object at fatal level.

The message is only logged when the level is set to FATAL or a level above.

The equivalent level for fatal in fludge is exception.

Parameters

messagethe message object to log

Specified By

fatal() in org.as2lib.env.log.Logger