posted 18 years ago
To pick up the changes from log4j.properties file without restarting or redeploying the app, use
PropertyConfigurator.configureAndWatch(log4j.properties);
in your init() method.It will look for any changes in properties file, for every 60 sec(default), you can also change the timings.
Arshad.