01: /*
02: * $Header: /cvsroot/webman-cms/source/webman/com/teamkonzept/web/servlet/ServletLog.java,v 1.7 2000/06/19 14:06:47 alex Exp $
03: *
04: */
05: package com.teamkonzept.web.servlet;
06:
07: import javax.servlet.*;
08:
09: import com.teamkonzept.web.*;
10:
11: public class ServletLog extends TKPseudoOutputStream {
12: ServletContext context;
13:
14: public ServletLog(ServletContext context) {
15: this .context = context;
16: }
17:
18: public final void write(String s) {
19: context.log(s);
20:
21: }
22: }
|