Hi all,

I'd like to have a catalina.log instead of catalina.{date}.log .

I took a look as saw the the implementation of the class
org.apache.juli.FileHandler forces to have a date in the filename. (I would
then suggest to rename it DateFileHandler or DailyFileHandler).
I tried to modify the file $CATALINA_BASE/conf/logging.properties to use the
standard java.util.logging.FileHandler but did not succeed : I get a file
$HOME/java0.log instead of /tmp/catalina.log .

Here is my logging.properties file :
handlers = 1catalina.java.util.logging.FileHandler,
2localhost.org.apache.juli.FileHandler,
3manager.org.apache.juli.FileHandler,
4host-manager.org.apache.juli.FileHandler, java.util.logging.ConsoleHandler
#handlers = 1catalina.org.apache.juli.FileHandler,
2localhost.org.apache.juli.FileHandler,
3manager.org.apache.juli.FileHandler,
4host-manager.org.apache.juli.FileHandler, java.util.logging.ConsoleHandler

.handlers = 1catalina.java.util.logging.FileHandler,
java.util.logging.ConsoleHandler
#.handlers = 1catalina.org.apache.juli.FileHandler,
java.util.logging.ConsoleHandler

############################################################
# Handler specific properties.
# Describes specific configuration info for Handlers.
############################################################

1catalina.org.apache.juli.FileHandler.level = FINE
1catalina.org.apache.juli.FileHandler.pattern = /tmp/catalina.log
1catalina.org.apache.juli.FileHandler.append = true

#1catalina.org.apache.juli.FileHandler.level = FINE
#1catalina.org.apache.juli.FileHandler.directory = ${catalina.base}/logs
#1catalina.org.apache.juli.FileHandler.prefix = catalina.


Does anyone has an idea of what's wrong ?
I read the page http://tomcat.apache.org/tomcat-6.0-doc/logging.html but
maybe I missed something.

Laurent

Reply via email to