org.jcrontab.log
Class NullLogger

java.lang.Object
  extended byorg.jcrontab.log.NullLogger
All Implemented Interfaces:
Logger

public class NullLogger
extends Object
implements Logger

This is the Null Logger basically is here to avoid logging, usually this shouldn't be used

Version:
$Revision: 1.2 $
Author:
$Author: iolalla $

Constructor Summary
NullLogger()
           
 
Method Summary
 void debug(String message)
          This method basically does nothing
 void error(String message, Throwable t)
          This method prints the trace of a Exception to avoid losing the info
 void info(String message)
          This method basically does nothing
 void init()
          This method basically does nothing
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

NullLogger

public NullLogger()
Method Detail

init

public void init()
This method basically does nothing

Specified by:
init in interface Logger

info

public void info(String message)
This method basically does nothing

Specified by:
info in interface Logger

error

public void error(String message,
                  Throwable t)
This method prints the trace of a Exception to avoid losing the info

Specified by:
error in interface Logger

debug

public void debug(String message)
This method basically does nothing

Specified by:
debug in interface Logger