1 5 package com.teamkonzept.web.servlet; 6 7 import javax.servlet.*; 8 9 import com.teamkonzept.web.*; 10 11 public class ServletLog extends TKPseudoOutputStream { 12 ServletContext context; 13 14 public ServletLog( ServletContext context ) 15 { 16 this.context = context; 17 } 18 19 public final void write( String s ) 20 { 21 context.log( s ); 22 23 } 24 } 25 | Popular Tags |