Packagecom.boostworthy.utils.logger
Interfacepublic interface ILog
ImplementorsLog

The 'ILog' interface defines a common interface for all log objects.



Public Methods
 MethodDefined by
  
debug(strMessage:String):void
Logs a debug message.
ILog
  
getLevel():uint
Gets the currently set log level.
ILog
  
getName():String
Gets the name of the log.
ILog
  
info(strMessage:String):void
Logs an info message.
ILog
  
setLevel(uLevel:uint):void
Sets the log level for the log.
ILog
  
severe(strMessage:String):void
Logs a severe message.
ILog
  
warning(strMessage:String):void
Logs a warning message.
ILog
Method detail
debug()method
public function debug(strMessage:String):void

Logs a debug message.

Parameters
strMessage:String — The message to log.
getLevel()method 
public function getLevel():uint

Gets the currently set log level.

Returns
uint — The currently set log level.

See also

getName()method 
public function getName():String

Gets the name of the log.

Returns
String — The name of the log.
info()method 
public function info(strMessage:String):void

Logs an info message.

Parameters
strMessage:String — The message to log.
setLevel()method 
public function setLevel(uLevel:uint):void

Sets the log level for the log.

Parameters
uLevel:uint — The log level in which to allow output from.

See also

severe()method 
public function severe(strMessage:String):void

Logs a severe message.

Parameters
strMessage:String — The message to log.
warning()method 
public function warning(strMessage:String):void

Logs a warning message.

Parameters
strMessage:String — The message to log.