I think this may have been addressed recently, but I don't
seem to have a record of it. Does logging actually work on Windows?
My jserv.properties file contains the following statements having to do with
logging:
log=true
log.file=C:\apachegr\ApJServ\logs\jserv.log
log.timestamp=true
log.dateFormat=[dd/MM/yyyy HH:mm:ss:SSS zz]
log.channel.init=true
log.channel.terminate=true
log.channel.serviceRequest=true
log.channel.authentication=true
log.channel.signal=true
log.channel.exceptionTracing=true
log.channel.servletLog=true
log.timestamp=true
log.dateFormat=[dd/MM/yyyy HH:mm:ss:SSS zz]
log.channel.init=true
log.channel.terminate=true
log.channel.serviceRequest=true
log.channel.authentication=true
log.channel.signal=true
log.channel.exceptionTracing=true
log.channel.servletLog=true
All of these things are being logged except for my servlet's
attempts to log. The way I code the servlet logging is:
getServletContext().log("blah blah blah...");
Any tips?