The problem is, whenever you change the log4j.properties/log4j.xml, you need to restart the tomcat [ or say any other server ]. Is there any workaround of reloading the log4j configuration?
|
From http://logging.apache.org/log4j/1.2/faq.html#3.6
Said that, I've successfully used PropertyConfigurator#configureAndWatch method in a Java EE environment (Sun One Web Server, not Tomcat). |
|||||
|
|
You can write a little initializer code with the following short steps:
See this blog post for details - reload log4j configuration in tomcat They also moved it to github. |
|||||
|
|
Another way is to configure Spring Framework's Log4jConfigListener in |
|||
|
|
|
You can create a strut action or a servlet which reload the properties file. So after editing the log4j.properties file, you will need to call the servlet to reload it. For example:
|
|||
|
|
|
You can tell log4j to reload the config periodically, in this example every 30 seconds:
Please take a look here for more information on log4j configuration: |
|||
|
|