SystemOutLoggerpublic class SystemOutLogger extends LoggerBase Simple implementation of Logger that writes to System.out.
Because this component is so simple, no configuration is required.
Therefore, Lifecycle is not implemented. |
Fields Summary |
---|
protected static final String | infoThe descriptive information about this implementation. |
Methods Summary |
---|
public void | log(java.lang.String msg)Writes the specified message to a servlet log file, usually an event
log. The name and type of the servlet log is specific to the
servlet container.
// --------------------------------------------------------- Public Methods
System.out.println(msg);
|
|