I wonder if there is a non-programatical way of making log4j aware of changes on the configuration at runtime. I know I can use
static {
PropertyConfigurator.configureAndWatch("log4j.properties", 100);
}
at some useful place to watch a property file for changes, but I would prefer an option within the property file itself, to tell log4j watch for changes. Are there any ?