| java.lang.Object org.apache.ajp.Logger
Logger | public class Logger (Code) | | A simple logger class used by classes in this package.
The intention is for this class to be overridden so that
log messages from classes in this package can be adapted
to loggers used by the connector implementations for various
servlet containers.
author: Kevin Seguin [seguin@apache.org] |
Method Summary | |
public void | log(String msg) Log the given message. | public void | log(String msg, Throwable t) Log the given message and error. |
log | public void log(String msg)(Code) | | Log the given message.
Parameters: msg - The message to log. |
log | public void log(String msg, Throwable t)(Code) | | Log the given message and error.
Parameters: msg - The message to log. Parameters: t - The error to log. |
|
|