com.revusky.niggle.util
Class ServletLog

java.lang.Object
  |
  +--com.revusky.niggle.util.ServletLog
All Implemented Interfaces:
Log

public class ServletLog
extends java.lang.Object
implements Log

A class that implements the com.revusky.niggle.util.Log interface by wrapping the built-in logging functionality in the ServletContext

Author:
Jonathan Revusky

Constructor Summary
ServletLog(javax.servlet.ServletContext servletContext)
           
 
Method Summary
 void println(java.lang.Object o)
          This single method accepts an Object and produces a log entry from it.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ServletLog

public ServletLog(javax.servlet.ServletContext servletContext)
Method Detail

println

public void println(java.lang.Object o)
Description copied from interface: Log
This single method accepts an Object and produces a log entry from it. Most implementation will use a toString().
Specified by:
println in interface Log