| java.lang.Object java.io.Writer velosurf.util.ServletLogWriter
ServletLogWriter | public class ServletLogWriter extends Writer (Code) | | This class implements a writer towards the servlet log.
author: Claude Brisson |
Method Summary | |
public void | close() close the writer. | public void | flush() flush any pending output. | public void | write(char[] cbuf, int off, int len) write an array of chars to the servlet log. |
ServletLogWriter | public ServletLogWriter(ServletContext log)(Code) | | build a new ServletLogWriter.
Parameters: log - ServletContext |
write | public void write(char[] cbuf, int off, int len) throws IOException(Code) | | write an array of chars to the servlet log.
Parameters: cbuf - characters to write Parameters: off - offset in the array Parameters: len - number of characters to write exception: IOException - thrown by underlying servlet logger |
|
|