Andreas Tille wrote: > In my system occueses the following: > > log(): /var/log/jserv.log > System.out(): nowhere (???? is this normal ???) > System.err(): nowhere (? formerly it was going to /var/log/apache/error.log > but now it doesn't 8-(((((((((((( ) >
Instead of System.out() and/or System.err() use the log() method of the GenericServlet abstract class (your Servlet should be a subclass of it). This will output your stuff in the jserv.log file. Cheers. -- Eric