Packagecom.adobe.mediacore.logging
Classpublic final class NullLogger
InheritanceNullLogger Inheritance Object
Implements Logger

Logger which logs nothing. Useful in cases where you want to filter out the log messaged from certain classes without editing or changing the logging code from them.



Public Methods
 MethodDefined By
  
Default constructor.
NullLogger
  
debug(message:String, ... rest):void
Logs a debug message.
NullLogger
  
error(message:String, ... rest):void
Logs a error message.
NullLogger
  
info(message:String, ... rest):void
Logs a informational message.
NullLogger
  
warn(message:String, ... rest):void
Logs a warning message.
NullLogger
Constructor Detail
NullLogger()Constructor
public function NullLogger()

Default constructor.

Method Detail
debug()method
public function debug(message:String, ... rest):void

Logs a debug message.

Parameters

message:String — message to be logged.
 
... rest — additional parameters which will be applied to message.

error()method 
public function error(message:String, ... rest):void

Logs a error message.

Parameters

message:String — message to be logged.
 
... rest — additional parameters which will be applied to message.

info()method 
public function info(message:String, ... rest):void

Logs a informational message.

Parameters

message:String — message to be logged.
 
... rest — additional parameters which will be applied to message.

warn()method 
public function warn(message:String, ... rest):void

Logs a warning message.

Parameters

message:String — message to be logged.
 
... rest — additional parameters which will be applied to message.