org.apache.ajp
Class Logger
public class Logger
extends java.lang.Object
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.
- Kevin Seguin [seguin@apache.org]
void | log(String msg) - Log the given message.
|
void | log(String msg, Throwable t) - Log the given message and error.
|
log
public void log(String msg)
Log the given message.
msg
- The message to log.
log
public void log(String msg,
Throwable t)
Log the given message and error.
msg
- The message to log.t
- The error to log.
Copyright B) 2000-2003 Apache Software Foundation. All Rights Reserved.