hello,
has someone experienced problems in tomcat logging?
for example, if you add parameter like "directory" to some logger which does not support it, what will be the result?
In my case, I have added some directory="/blabla" parameters to loggers in server.xml, for example like this:
<Logger className="org.apache.catalina.logger.FileLogger"
directory = "/logs" prefix="apache_log." suffix=".txt"
timestamp="true"/>
but it seems like tomcat does not log at all anymore but into the catalina.out which does not allow any extra parameters according to documentation.
Which classes allow for example this "directory" parameter and could this be the reason why tomcat does not create any new log files like catalina_log etc?
Thanks in advance.
has someone experienced problems in tomcat logging?
for example, if you add parameter like "directory" to some logger which does not support it, what will be the result?
In my case, I have added some directory="/blabla" parameters to loggers in server.xml, for example like this:
<Logger className="org.apache.catalina.logger.FileLogger"
directory = "/logs" prefix="apache_log." suffix=".txt"
timestamp="true"/>
but it seems like tomcat does not log at all anymore but into the catalina.out which does not allow any extra parameters according to documentation.
Which classes allow for example this "directory" parameter and could this be the reason why tomcat does not create any new log files like catalina_log etc?
Thanks in advance.