org.jcrontab.log
Interface Logger

All Known Implementing Classes:
Log4JLogger

public interface Logger

This interface defines the basic behaviour of a Jcrontab Logger This class Is simple to make it easier to integrate with other packages.

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

Method Summary
 void debug(java.lang.String message)
          This method reports a debug level message to the log
 void error(java.lang.String message, java.lang.Throwable t)
          This method reports a Exception or Error to the log
 void info(java.lang.String message)
          This method reports a message to the log
 void init()
          This method does the basic initialization.
 

Method Detail

init

public void init()
This method does the basic initialization.


info

public void info(java.lang.String message)
This method reports a message to the log


error

public void error(java.lang.String message,
                  java.lang.Throwable t)
This method reports a Exception or Error to the log


debug

public void debug(java.lang.String message)
This method reports a debug level message to the log